-
Notifications
You must be signed in to change notification settings - Fork 49
151 lines (135 loc) · 4.9 KB
/
sync-shared-config.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Sync shared configurations
on:
push:
branches:
- master
pull_request:
schedule:
- cron: "0 */3 * * *" # Every 3 hours
workflow_dispatch:
permissions:
contents: read
defaults:
run:
shell: bash -xeuo pipefail {0}
concurrency:
group: "sync-shared-config-${{ github.ref }}"
cancel-in-progress: true
jobs:
sync:
if: github.repository == 'Homebrew/.github'
runs-on: ubuntu-latest
strategy:
matrix:
repo:
- Homebrew/.github
- Homebrew/actions
- Homebrew/brew
- Homebrew/brew-pip-audit
- Homebrew/brew.sh
- Homebrew/ci-orchestrator
- Homebrew/discussions
- Homebrew/formula-patches
- Homebrew/formulae.brew.sh
- Homebrew/glibc-bootstrap
- Homebrew/homebrew-aliases
- Homebrew/homebrew-bundle
- Homebrew/homebrew-cask
- Homebrew/homebrew-command-not-found
- Homebrew/homebrew-core
- Homebrew/homebrew-formula-analytics
- Homebrew/homebrew-linux-fonts
- Homebrew/homebrew-portable-ruby
- Homebrew/homebrew-services
- Homebrew/homebrew-test-bot
- Homebrew/install
- Homebrew/orka_api_client
- Homebrew/ruby-macho
- Homebrew/rubydoc.brew.sh
- Homebrew/mass-bottling-tracker-private
- Homebrew/governance-private
- Homebrew/security-private
- Homebrew/ops-private
fail-fast: false
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Clone source repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- run: brew install-bundler-gems --groups=style
if: matrix.repo == 'Homebrew/.github'
env:
HOMEBREW_DEVELOPER: 1
- run: brew style .github/actions/sync/*.rb
if: matrix.repo == 'Homebrew/.github'
env:
HOMEBREW_DEVELOPER: 1
- name: Clone target repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
repository: ${{ matrix.repo }}
path: target/${{ matrix.repo }}
token: ${{ secrets.HOMEBREW_DOTGITHUB_WORKFLOW_TOKEN }}
- name: Configure Git user
uses: Homebrew/actions/git-user-config@master
with:
username: BrewTestBot
- name: Set up GPG commit signing
uses: Homebrew/actions/setup-commit-signing@master
with:
signing_key: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY }}
- name: Sync initial Ruby version
run: cp /home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/.ruby-version .
- name: Install Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: true
- name: Detect changes
id: detect_changes
env:
HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }}
TARGET: target/${{ matrix.repo }}
run: ./.github/actions/sync/shared-config.rb "${TARGET}" '/home/linuxbrew/.linuxbrew/Homebrew'
- name: Create pull request
if: github.ref == 'refs/heads/master' && steps.detect_changes.outputs.pull_request == 'true'
run: |
cd "target/$GH_REPO"
git checkout -b sync-shared-config
# Stagger network calls over the next 10 minutes to minimise errors.
sleep "$(( RANDOM % 60 * 10 ))"
if gh api \
-X GET \
--header 'Accept: application/vnd.github+json' \
--header 'X-GitHub-Api-Version: 2022-11-28' \
"/repos/${GH_REPO}/pulls" \
-f head=Homebrew:sync-shared-config \
-f state=open |
jq --exit-status 'length == 0'
then
git push --set-upstream --force origin sync-shared-config
# We don't want backticks to be expanded.
# shellcheck disable=SC2016
gh pr create --head sync-shared-config --title "Synchronize shared configuration" --body 'This pull request was created automatically by the [`sync-shared-config`](https://github.com/Homebrew/.github/blob/HEAD/.github/actions/sync/shared-config.rb) workflow.'
else
git fetch origin sync-shared-config
if ! git diff --no-ext-diff --quiet --exit-code origin/sync-shared-config
then
git push --force origin sync-shared-config
fi
fi
env:
GH_REPO: ${{ matrix.repo }}
GH_TOKEN: ${{ secrets.HOMEBREW_DOTGITHUB_WORKFLOW_TOKEN }}
conclusion:
needs: sync
runs-on: ubuntu-latest
if: always()
steps:
- name: Result
env:
RESULT: ${{ needs.sync.result }}
run: |
[[ "${RESULT}" == success ]]