Update Tools #1324
This file contains 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 2 * * * | |
jobs: | |
update-tools: | |
if: ${{ github.repository_owner == 'GothenburgBitFactory' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update tools | |
env: | |
GITHUB_API_KEY: ${{ secrets.GITHUB_TOKEN }} | |
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@v7 | |
with: | |
delete-branch: true | |
commit-message: Updated tools-data.json | |
author: "Timewarrior Tools Bot <[email protected]>" | |
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 |