Skip to content

Commit 1a36eaa

Browse files
authored
Merge pull request #124 from per1234/triggers
Add additional triggers to integration test workflow
2 parents b3ab95f + e6e67e5 commit 1a36eaa

14 files changed

+62
-14
lines changed

.github/workflows/check-action-metadata-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Determine if the rest of the workflow should run
3838
id: determination
3939
run: |
40-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
40+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
4141
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
4242
if [[
4343
"${{ github.event_name }}" != "create" ||

.github/workflows/check-files-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Determine if the rest of the workflow should run
2222
id: determination
2323
run: |
24-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
24+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
2525
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
2626
if [[
2727
"${{ github.event_name }}" != "create" ||

.github/workflows/check-general-formatting-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Determine if the rest of the workflow should run
2222
id: determination
2323
run: |
24-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
24+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
2525
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
2626
if [[
2727
"${{ github.event_name }}" != "create" ||

.github/workflows/check-license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Determine if the rest of the workflow should run
4242
id: determination
4343
run: |
44-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
44+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
4545
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
4646
if [[
4747
"${{ github.event_name }}" != "create" ||

.github/workflows/check-markdown-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Determine if the rest of the workflow should run
4848
id: determination
4949
run: |
50-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
50+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
5151
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
5252
if [[
5353
"${{ github.event_name }}" != "create" ||

.github/workflows/check-npm-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Determine if the rest of the workflow should run
3939
id: determination
4040
run: |
41-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
41+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
4242
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
4343
if [[
4444
"${{ github.event_name }}" != "create" ||

.github/workflows/check-prettier-formatting-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
- name: Determine if the rest of the workflow should run
216216
id: determination
217217
run: |
218-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
218+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
219219
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
220220
if [[
221221
"${{ github.event_name }}" != "create" ||

.github/workflows/check-python-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Determine if the rest of the workflow should run
4242
id: determination
4343
run: |
44-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
44+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
4545
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
4646
if [[
4747
"${{ github.event_name }}" != "create" ||

.github/workflows/check-taskfiles.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Determine if the rest of the workflow should run
3636
id: determination
3737
run: |
38-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
38+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
3939
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
4040
if [[
4141
"${{ github.event_name }}" != "create" ||

.github/workflows/check-toc-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Determine if the rest of the workflow should run
3636
id: determination
3737
run: |
38-
RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
38+
RELEASE_BRANCH_REGEX="^refs/heads/v[0-9]+$"
3939
# The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
4040
if [[
4141
"${{ github.event_name }}" != "create" ||

0 commit comments

Comments
 (0)