Skip to content

Commit

Permalink
ci: use GitHub App to make PRs (#490)
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii authored Sep 16, 2024
1 parent 6b90f31 commit 3a01484
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
name: Bump versions
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
- run: pipx run nox -s pc_bump
env:
Expand All @@ -25,5 +30,6 @@ jobs:
body: |
Update the versions mentioned in the docs pages.
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}). Close and reopen to trigger ci.
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}).
token: ${{ steps.generate-token.outputs.token }}
delete-branch: true

0 comments on commit 3a01484

Please sign in to comment.