We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfe212 commit 462373fCopy full SHA for 462373f
.github/workflows/test-release.yml
@@ -10,7 +10,11 @@ permissions:
10
11
jobs:
12
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
+ runs-on: ubuntu-default
+ if: "startsWith(github.event.name , 'v0.0.0-test.')" # Match only releases created by test-include.yml and test-exclude.yml
+ steps:
+ - 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