We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0eb7bd commit 4d15196Copy full SHA for 4d15196
1 file changed
.github/workflows/release-please-gha.yml
@@ -21,7 +21,16 @@ permissions:
21
contents: read
22
23
jobs:
24
+ check-secret:
25
+ runs-on: ubuntu-latest
26
+ outputs:
27
+ has-token: ${{ steps.check.outputs.has-token }}
28
+ steps:
29
+ - id: check
30
+ run: echo "has-token=${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM != '' }}" >> $GITHUB_OUTPUT
31
release-please-master:
32
+ needs: check-secret
33
+ if: needs.check-secret.outputs.has-token == 'true'
34
runs-on: ubuntu-latest
35
steps:
36
- name: Checkout repository
0 commit comments