Skip to content

Commit

Permalink
Use a Github app to push in update-dependencies
Browse files Browse the repository at this point in the history
App is already installed on the repo, and is here: https:/apps/cibuildwheel-bot
  • Loading branch information
joerick authored May 8, 2021
1 parent 38b4626 commit 024334a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,30 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
name: Install Python 3.9
with:
python-version: 3.9
architecture: x64

- name: Install dependencies
run: python -m pip install ".[dev]"

- name: "Run update: dependencies"
run: python ./bin/update_dependencies.py

- name: "Run update: python configs"
run: python ./bin/update_pythons.py --force

# we use this step to grab a Github App auth token, so that PRs generated by this workflow
# run the GHA tests.
- uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.CIBUILDWHEEL_BOT_APP_ID }}
private_key: ${{ secrets.CIBUILDWHEEL_BOT_APP_PRIVATE_KEY }}

- name: Create Pull Request
if: github.ref == 'refs/heads/master' && github.repository == 'joerick/cibuildwheel'
uses: peter-evans/create-pull-request@v3
Expand All @@ -33,4 +46,5 @@ jobs:
PR generated by "Update dependencies" [workflow](https:/${{github.repository}}/actions/runs/${{github.run_id}}).
branch: update-dependencies-pr
token: ${{ steps.generate-token.outputs.token }}
delete-branch: true

0 comments on commit 024334a

Please sign in to comment.