This repository was archived by the owner on Nov 3, 2025. It is now read-only.
Update Projects #1172
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 Projects | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v3 | |
| - name: Set up Python 3.x | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Run build | |
| run: | | |
| python .github/workflows/updateprojects.py | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v5 | |
| with: | |
| token: ${{ secrets.PAT }} | |
| branch: auto-update-projects | |
| path: . | |
| title: Update Projects | |
| labels: automerge | |
| commit-message: Update Projects | |
| signoff: true | |
| committer: LFCIBot <[email protected]> | |
| author: LFCIBot <[email protected]> | |
| body: | | |
| Update projects |