Skip to content

Commit 35118de

Browse files
committed
fix: update trigger for test-release.yml; update gh cli flags for test-include, test-exclude workflows.
1 parent bc93f53 commit 35118de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test-exclude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- run: |
4040
# Wait until a release workflow whose tag is tied to this PR's SHA is running
41-
while [[ $(gh run list -w "Test Release" --json databaseId -q 'length' -s completed -c ${{ github.sha }}) -eq 0 ]]; do
41+
while [[ $(gh run list -w "Test Excluded Regex" --json databaseId -q 'length' -s completed -c ${{ github.sha }}) -eq 0 ]]; do
4242
sleep 5
4343
done
4444
env:

.github/workflows/test-include.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- run: |
3838
# Wait until a release workflow whose tag is tied to this PR's SHA is running
39-
while [[ $(gh run list -w "Test Release" --json databaseId -q 'length' -s completed -c ${{ github.sha }}) -eq 0 ]]; do
39+
while [[ $(gh run list -w "Test Included Regex" --json databaseId -q 'length' -s completed -c ${{ github.sha }}) -eq 0 ]]; do
4040
sleep 5
4141
done
4242
env:

.github/workflows/test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Test Release
22
on:
33
release:
4-
types: [published]
4+
types: [created]
55

66
permissions:
77
id-token: write

0 commit comments

Comments
 (0)