Skip to content

Commit

Permalink
added app instead of github.token
Browse files Browse the repository at this point in the history
  • Loading branch information
Bullrich committed Feb 15, 2024
1 parent b772b5e commit fd5879d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/up-to-date.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ jobs:
name: Keep PRs up to date
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_KEY }}
- name: Update all the PRs
uses: paritytech/up-to-date-action@main
with:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
REQUIRE_AUTO_MERGE: false

0 comments on commit fd5879d

Please sign in to comment.