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.
2 parents 4c1b68d + 952bf26 commit 60f66faCopy full SHA for 60f66fa
.github/workflows/main.yml
@@ -18,7 +18,12 @@ on:
18
jobs:
19
main:
20
runs-on: ubuntu-latest
21
- if: ${{ github.event_name == 'pull_request' || (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe to test')) }}
+ if: >
22
+ ${{
23
+ github.event_name == 'pull_request' ||
24
+ (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe to test')) ||
25
+ startsWith(github.ref, 'refs/tags/')
26
+ }}
27
permissions:
28
packages: write
29
contents: read
0 commit comments