Update RFCs #2213
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: Update RFCs | |
| on: | |
| push: | |
| paths: | |
| - '**.py' | |
| - 'Makefile' | |
| - 'update.sh' | |
| schedule: | |
| - cron: '41 9 * * *' | |
| workflow_dispatch: null | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| - name: Build rfcs.json | |
| run: make var/rfcs.json | |
| - name: Fetch refs.json | |
| run: make var/refs.json | |
| - name: Upload | |
| run: ./bin/update.sh |