From 3a134a5c1f06772e6e8a205c170860795cde29be Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Wed, 14 Feb 2024 13:56:43 +0100 Subject: [PATCH] upgraded keep-pr-up-to-date action to 0.2.0 (#175) Upgraded the action [paritytech/up-to-date-action](https://github.com/paritytech/up-to-date-action) to version `0.2.0`. This version brings paritytech/up-to-date-action#9. A feature that, when the action fails with a PR, it comments in it so the user can try to fix the problem instead of silently failing. - [x] Does not require a CHANGELOG entry --- .github/workflows/up-to-date.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/up-to-date.yml b/.github/workflows/up-to-date.yml index a5a431fa39..fa0a65f460 100644 --- a/.github/workflows/up-to-date.yml +++ b/.github/workflows/up-to-date.yml @@ -7,6 +7,7 @@ on: jobs: updatePullRequests: + name: Keep PRs up to date runs-on: ubuntu-latest environment: master steps: @@ -17,6 +18,6 @@ jobs: app_id: ${{ secrets.MERGE_APP_ID }} private_key: ${{ secrets.MERGE_APP_KEY }} - name: Update all the PRs - uses: paritytech/up-to-date-action@v0.1.0 + uses: paritytech/up-to-date-action@v0.2.0 with: GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}