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 097914c commit 431bc27Copy full SHA for 431bc27
.github/workflows/create-pr.yml
@@ -19,11 +19,12 @@ jobs:
19
fetch-depth: 0
20
21
- name: Create Pull Request
22
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
23
uses: peter-evans/create-pull-request@v5
24
with:
25
token: ${{ secrets.GITHUB_TOKEN }}
26
base: gh-pages
- branch: ${{ github.event.workflow_run.conclusion == 'success' && 'update-badges-' + github.run_id }}
27
+ branch: ${{ format('update-badges-{0}', github.event.workflow_run.run_id) }}
28
title: "Update badges.json"
29
body: |
30
This pull request updates `badges.json` with the latest release URLs.
0 commit comments