File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 88 update-actions :
99 runs-on : ubuntu-latest
1010 steps :
11- - name : Checkout repository
12- uses : actions/checkout@v4
11+ - name : Create temporary GitHub App Token
12+ id : app
13+ uses : actions/create-github-app-token@v1
14+ with :
15+ app-id : ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
16+ private-key : ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
17+ owner : ${{ github.repository_owner }}
1318
1419 - name : Update GitHub Actions
1520 uses : ./actions
1621 with :
17- token : ${{ github .token }}
22+ token : ${{ steps.app.outputs .token }}
1823 base-branch : ' main'
1924 branch-prefix : ' update-actions'
2025 pr-title : ' Update GitHub Actions'
2126 commit-message : ' Update GitHub Actions'
2227 file-glob : ' .github/**/*.yml'
2328 prefixes : ' actions'
29+ auto-merge : ' true'
You can’t perform that action at this time.
0 commit comments