forked from boostorg/boost
-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (93 loc) · 3.69 KB
/
commit-bot.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Commit Bot
on:
push:
branches:
- master
- develop
schedule:
- cron: "0,15,30,45 * * * *"
concurrency:
group: ${{format('commit-bot-{0}:{1}', github.repository, github.ref)}}
cancel-in-progress: true
jobs:
update-modules:
runs-on: ubuntu-latest
name: Commit Bot
steps:
- name: Check for module updates
id: branches
run: |
if [[ "${{ github.event_name }}" == "push" ]]; then
branches="${{ github.ref_name }}"
else
branches="master develop"
fi
echo "branches=$branches" >> $GITHUB_OUTPUT
- name: Checkout master repository
uses: actions/checkout@v4
if: contains(steps.branches.outputs.branches, 'master')
with:
ref: master
path: master
- name: Checkout develop repository
uses: actions/checkout@v4
if: contains(steps.branches.outputs.branches, 'develop')
with:
ref: develop
path: develop
- name: Check for module updates
run: |
branches="${{ steps.branches.outputs.branches }}"
# Set up Git
git config --global user.name "cppal-commitbot"
git config --global user.email "[email protected]"
# Update each branch
for branch in $branches; do
cd $branch
module_paths=$(git config --file .gitmodules --get-regexp '^submodule\..*\.path$')
while IFS=' ' read -r key path; do
submodule_name=$(echo "$key" | awk -F '.' '{print $2}')
submodule_path=$(echo "$path")
url=$(git config --file .gitmodules --get-regexp "^submodule\.$submodule_name\.url$" | awk '{print $2}')
current_hash=$(git ls-remote "$url" "refs/heads/$branch" | cut -f 1)
current_hash="${current_hash#"${current_hash%%[![:space:]]*}"}"
current_hash="${current_hash%"${hash##*[![:space:]]}"}"
commit_id="${current_hash:0:8}"
previous_hash=$(git ls-tree HEAD "$submodule_path" | awk '{print $3}')
previous_hash="${previous_hash#"${previous_hash%%[![:space:]]*}"}"
previous_hash="${previous_hash%"${previous_hash##*[![:space:]]}"}"
previous_commit_id="${previous_hash:0:8}"
# debugging
if [[ "$submodule_name" =~ container_hash ]]; then
echo "current_hash is XX${current_hash}XX and previous_hash is XX${previous_hash}XX"
fi
if [[ "${current_hash}" == "${previous_hash}" ]]; then
echo "$submodule_name ($commit_id): OK"
else
echo "$submodule_name: $previous_commit_id -> $commit_id"
set -x
set +e
git submodule update --init "$submodule_path"
git submodule update --remote "$submodule_path"
git add "$submodule_path"
git commit -m "Update $submodule_name from $branch"
set -e
set +x
fi
done <<< "$module_paths"
cd ..
done
- name: Push changes from master
uses: ad-m/[email protected]
if: contains(steps.branches.outputs.branches, 'master')
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master
directory: master
- name: Push changes from develop
uses: ad-m/[email protected]
if: contains(steps.branches.outputs.branches, 'develop')
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: develop
directory: develop