Skip to content

Commit dae4a9f

Browse files
committed
Update workflows to specify pull request types for branch triggers
1 parent ebde23c commit dae4a9f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/lint-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Lint workflow
22
on:
33
pull_request:
44
branches:
5-
- '*'
5+
- "*"
6+
types: [opened, synchronize, reopened, ready_for_review]
67
env:
78
OPENSEARCH_DASHBOARDS_VERSION: '2.x'
89
jobs:

.github/workflows/unit-tests-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Unit tests workflow
22
on:
33
pull_request:
44
branches:
5-
- '*'
5+
- "*"
6+
types: [opened, synchronize, reopened, ready_for_review]
67
env:
78
OPENSEARCH_DASHBOARDS_VERSION: '2.x'
89
jobs:

.github/workflows/verify-binary-installation.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: 'Install Dashboards with Plugin via Binary'
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
branches:
6+
- "*"
7+
types: [opened, synchronize, reopened, ready_for_review]
48
env:
59
OPENSEARCH_VERSION: '3.0.0'
610
CI: 1

0 commit comments

Comments
 (0)