-
Notifications
You must be signed in to change notification settings - Fork 4
63 lines (56 loc) · 1.76 KB
/
update.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Update
on:
push:
branches:
- master
paths:
- '.github/**'
schedule:
- cron: "0 11 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
update:
name: Update Versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
cache: false
- name: Run scripts/update_formula.php
run: php scripts/update_formula.php
- name: Commit changes.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -x
go install github.com/planetscale/ghcommit@latest
if ! git diff --quiet Formula/tideways-php@*; then
changed_files=()
for f in Formula/tideways-php@*; do
changed_files+=(--add "$f")
done
ghcommit -r ${{ github.repository }} \
-b master \
"${changed_files[@]}" \
--message "Update to tideways-php $(awk '$1 == "version"{gsub(/"/,"",$2); print $2}' ${changed_files[1]})"
git pull --autostash
fi
if ! git diff --quiet Formula/tideways-daemon.rb; then
ghcommit -r ${{ github.repository }} \
-b master \
--add Formula/tideways-daemon.rb \
--message "Update to tideways-daemon $(awk '$1 == "version"{gsub(/"/,"",$2); print $2}' Formula/tideways-daemon.rb)"
git pull --autostash
fi
if ! git diff --quiet Formula/tideways-cli.rb; then
ghcommit -r ${{ github.repository }} \
-b master \
--add Formula/tideways-cli.rb \
--message "Update to tideways-cli $(awk '$1 == "version"{gsub(/"/,"",$2); print $2}' Formula/tideways-cli.rb)"
git pull --autostash
fi