Skip to content

Commit 462373f

Browse files
committed
fix: fix test-release.yml; update startsWith search token to be more precise (even though it's currently working).
1 parent edfe212 commit 462373f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/test-release.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ permissions:
1010

1111
jobs:
1212
pr-comment-on-release:
13-
if: "startsWith(github.event.name , 'v0.0.0-test')" # Match only releases created by test-include.yml and test-exclude.yml
14-
uses: ./action.yml
15-
with:
16-
include_regex: "/v0\\.0\\.0-test-include\\.*./g" # Only include releases created by test-include.yml
13+
runs-on: ubuntu-default
14+
if: "startsWith(github.event.name , 'v0.0.0-test.')" # Match only releases created by test-include.yml and test-exclude.yml
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: ./
19+
with:
20+
include_regex: "/v0\\.0\\.0-test-include\\.*./g" # Only include releases created by test-include.yml

0 commit comments

Comments
 (0)