From bcca93886c04fc78da17056a155ebb1c9b2e12c2 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Fri, 16 Feb 2024 12:49:31 +0100 Subject: [PATCH] fixed rfc-action cron job (#75) Changed the time to run **every day at 12:00** (UTC) Updated the version to 0.0.8 which fixes the bug with the referenda url comment being wrongly formatted --- .github/workflows/rfc-referenda-notifications.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rfc-referenda-notifications.yml b/.github/workflows/rfc-referenda-notifications.yml index d8fdf27..12e65c6 100644 --- a/.github/workflows/rfc-referenda-notifications.yml +++ b/.github/workflows/rfc-referenda-notifications.yml @@ -3,7 +3,7 @@ name: RFC Cron on: workflow_dispatch: schedule: - - cron: '0 12 * * 1,2,3,4,5' + - cron: '0 12 * * *' jobs: rfc_notification: @@ -19,7 +19,7 @@ jobs: GH_TOKEN: ${{ github.token }} WORKFLOW: ${{ github.workflow }} GH_REPO: "${{ github.repository_owner }}/${{ github.event.repository.name }}" - - uses: paritytech/rfc-action@v0.0.7 + - uses: paritytech/rfc-action@v0.0.8 env: GH_TOKEN: ${{ github.token }} PROVIDER_URL: "wss://polkadot-collectives-rpc.polkadot.io"