Switch to app token for update dependencies
This commit is contained in:
parent
08314767b8
commit
4663c37d15
2 changed files with 9 additions and 8 deletions
4
.github/dependabot.yaml
vendored
4
.github/dependabot.yaml
vendored
|
@ -1,9 +1,5 @@
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "pip"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
- package-ecosystem: "docker"
|
- package-ecosystem: "docker"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
|
|
13
.github/workflows/update-dependencies.yaml
vendored
13
.github/workflows/update-dependencies.yaml
vendored
|
@ -3,11 +3,10 @@ name: Update dependencies
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 18 * * TUE'
|
- cron: '0 18 * * MON'
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
pull-requests: write
|
contents: read
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update:
|
update:
|
||||||
|
@ -27,11 +26,17 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
pip install pip-tools invoke
|
pip install pip-tools invoke
|
||||||
invoke update-dependencies --no-sync
|
invoke update-dependencies --no-sync
|
||||||
|
- name: Generate token
|
||||||
|
uses: tibdex/github-app-token@v1
|
||||||
|
id: generate-token
|
||||||
|
with:
|
||||||
|
app_id: ${{ secrets.PR_APP_ID }}
|
||||||
|
private_key: ${{ secrets.PR_APP_PRIVATE_KEY }}
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v4
|
uses: peter-evans/create-pull-request@v4
|
||||||
id: create-pull-request
|
id: create-pull-request
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.PERSONAL_TOKEN_PR }}
|
token: ${{ steps.generate-token.outputs.token }}
|
||||||
commit-message: Update dependencies
|
commit-message: Update dependencies
|
||||||
base: master
|
base: master
|
||||||
branch: update-dependencies
|
branch: update-dependencies
|
||||||
|
|
Reference in a new issue