From ade390b5ef06f3d897a56acea653504e706fe30e Mon Sep 17 00:00:00 2001 From: Przemek Rzad Date: Tue, 9 Jan 2024 15:54:26 +0100 Subject: [PATCH] Update rfc-action to v0.0.6 (#64) Contains improved error handling as a response to [this failure](https://github.com/polkadot-fellows/RFCs/pull/56#issuecomment-1869403989). --- .github/workflows/rfc-action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rfc-action.yml b/.github/workflows/rfc-action.yml index a4e0001..8569a70 100644 --- a/.github/workflows/rfc-action.yml +++ b/.github/workflows/rfc-action.yml @@ -11,6 +11,7 @@ jobs: name: Handle an RFC-related command if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/rfc') }} runs-on: ubuntu-latest + timeout-minutes: 5 steps: - name: Generate a token id: generate_token @@ -18,6 +19,6 @@ jobs: with: app_id: ${{ secrets.RFC_BOT_APP_ID }} private_key: ${{ secrets.RFC_BOT_PRIVATE_KEY }} - - uses: paritytech/rfc-action@58bf9d7446e85cf2a95a1600cb3616f90c3b3913 # v0.0.5 + - uses: paritytech/rfc-action@c673cf6776a2f266c7d8cbb29bc2159bea2cdd78 # v0.0.6 env: GH_TOKEN: ${{ steps.generate_token.outputs.token }}