We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b42e796 commit cff9ac2Copy full SHA for cff9ac2
.github/workflows/release-please.yml
@@ -13,7 +13,7 @@ jobs:
13
permissions:
14
contents: write # to create release commit (google-github-actions/release-please-action)
15
pull-requests: write # to create release PR (google-github-actions/release-please-action)
16
-
+ if: github.event_name == 'push'
17
runs-on: ubuntu-latest
18
steps:
19
- uses: google-github-actions/release-please-action@v2
@@ -64,5 +64,5 @@ jobs:
64
test:
65
name: Release Test
66
needs: [ release-please ]
67
- if: needs.release-please.outputs.pr
+ if: needs.release-please.outputs.pr || startsWith(github.head_ref, 'release-v')
68
uses: ./.github/workflows/tests.yml
0 commit comments