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 eb1eeb5 commit 81a3f08Copy full SHA for 81a3f08
1 file changed
.github/workflows/definitions.yml
@@ -22,10 +22,8 @@ jobs:
22
GIT_COMMITTER_NAME: ${{ vars.GHA_BOT_NAME }}
23
GIT_COMMITTER_EMAIL: ${{ vars.GHA_BOT_EMAIL }}
24
25
- - run: git log --format='- %s' --reverse ${{github.sha}}.. >> ${{ runner.temp }}/pr-body
26
- - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
27
- with:
28
- token: ${{ secrets.BOT_TOKEN }}
29
- branch: latest-scraped-definitions
30
- title: "Scraped latest definitions"
31
- body-path: ${{ runner.temp }}/pr-body
+ - run: git checkout -b scrape/latest-definitions
+ - run: gh pr create --fill --title "$PR_TITLE"
+ env:
+ GH_TOKEN: ${{ secrets.BOT_TOKEN }}
+ PR_TITLE: "Scraped latest definitions"
0 commit comments