chore(deps): update dependency setuptools to v69.5.1 #4811
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatic Rebase | |
on: | |
push: | |
branches-ignore: | |
# Ignore branches automatically created by github-rebase | |
- rebase-pull-request** | |
- cherry-pick-rebase-pull-request** | |
pull_request_target: | |
types: | |
- labeled | |
jobs: | |
auto-rebase: | |
name: AutoRebase | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-github-app-token@v1.10.0 | |
id: generate-token | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- uses: Label305/AutoRebase@v0.1 | |
with: | |
github_token: ${{ steps.generate-token.outputs.token }} |