Skip to content

weekly-update

weekly-update #242

Workflow file for this run

name: weekly-update
on:
schedule:
# run every Monday at 22:00 UTC
- cron: '0 22 * * 1'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update formula
run: |
git config user.name github-actions
git config user.email [email protected]
bin/patchtool.sh --fetch-upstream
bin/patchtool.sh --update-description
bin/patchtool.sh --remove-bottle
bin/patchtool.sh --apply-patch
bin/patchtool.sh --git-commit-formula
git push