Sync shared configurations #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync shared configurations | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: "0 */3 * * *" # Every 3 hours | |
permissions: | |
contents: read | |
concurrency: | |
group: "sync-shared-config-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
sync-shared-config: | |
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 main repository | |
uses: actions/checkout@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 secondary repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ matrix.repo }} | |
path: vendor/${{ matrix.repo }} | |
token: ${{ secrets.HOMEBREW_DOTGITHUB_WORKFLOW_TOKEN }} | |
persist-credentials: false | |
- 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: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Detect changes | |
id: detect_changes | |
env: | |
HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }} | |
run: ./.github/actions/sync/shared-config.rb 'vendor/${{ matrix.repo }}' '/home/linuxbrew/.linuxbrew/Homebrew' | |
- name: Create pull request | |
if: ${{ github.ref == 'refs/heads/master' && steps.detect_changes.outputs.pull_request == 'true' }} | |
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e | |
with: | |
path: vendor/${{ matrix.repo }} | |
token: ${{ secrets.HOMEBREW_DOTGITHUB_WORKFLOW_TOKEN }} | |
branch: 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/workflows/sync-shared-config.yml) | |
workflow. |