Skip to content

Update Tools

Update Tools #1238

Workflow file for this run

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@v6
with:
delete-branch: true
commit-message: Updated tools-data.json
author: "Timewarrior Tools Bot <timew-tools-bot@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