Update Tools #1868
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 Tools | |
| on: | |
| schedule: | |
| - cron: 0 0 * * * | |
| jobs: | |
| update-tools: | |
| # Disabled for #1455. | |
| if: false #${{ github.repository_owner == 'GothenburgBitFactory' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Update tools | |
| env: | |
| GITHUB_API_KEY: ${{ secrets.GITHUB_TOKEN }} | |
| LOG_LEVEL: "INFO" | |
| run: | | |
| python3 -m venv /tmp/venv | |
| /tmp/venv/bin/pip install --upgrade pip | |
| /tmp/venv/bin/pip install -r bin/requirements.txt | |
| /tmp/venv/bin/python bin/update.py static/tools-data.json | |
| - name: Create Pull Request | |
| id: cpr | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| delete-branch: true | |
| commit-message: Updated tools-data.json | |
| author: "Taskwarrior Bot <taskwarrior@users.noreply.github.com>" | |
| title: Updated tools-data.json | |
| body: | | |
| - Updated `tools-data.json` | |
| Auto-generated by [create-pull-request][1] | |
| [1]: https://github.com/peter-evans/create-pull-request | |
| branch: update-tools | |
| - name: Merge Pull Request | |
| if: "${{ steps.cpr.outputs.pull-request-number != '' }}" | |
| uses: juliangruber/merge-pull-request-action@v1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| number: ${{ steps.cpr.outputs.pull-request-number }} | |
| method: merge |