RFC Cron #1245
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: RFC Cron | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12,18 * * *' | |
| jobs: | |
| rfc_notification: | |
| runs-on: ubuntu-latest | |
| name: Notify on referendas | |
| steps: | |
| - name: Get last run | |
| run: | | |
| last=$(gh run list -w "$WORKFLOW" --json startedAt,status -q 'map(select(.status == "completed"))[0].startedAt') | |
| echo "last=$last" >> "$GITHUB_OUTPUT" | |
| id: date | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| WORKFLOW: ${{ github.workflow }} | |
| GH_REPO: "${{ github.repository_owner }}/${{ github.event.repository.name }}" | |
| - uses: paritytech/rfc-action@v0.1.1 | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| PROVIDER_URL: "wss://polkadot-collectives-rpc.polkadot.io" | |
| START_DATE: ${{ steps.date.outputs.last }} |