forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (57 loc) · 2.06 KB
/
sync-templates-and-ci-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
name: Sync templates and CI config.
on:
push:
branches:
- debug-sync
- master
concurrency:
group: sync-templates-and-ci-config
cancel-in-progress: true
permissions:
contents: read
jobs:
sync-templates-and-ci-config:
if: github.repository == 'Homebrew/homebrew-cask'
runs-on: ubuntu-latest
strategy:
matrix:
repo:
- Homebrew/homebrew-cask-fonts
- Homebrew/homebrew-cask-versions
steps:
- name: Clone main repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Clone secondary repository
uses: actions/checkout@v3
with:
repository: ${{ matrix.repo }}
path: vendor/${{ matrix.repo }}
persist-credentials: false
- name: Configure Git user
uses: Homebrew/actions/git-user-config@master
with:
username: BrewTestBot
- name: Set up GPG commit signing
id: set-up-commit-signing
uses: Homebrew/actions/setup-commit-signing@master
with:
signing_key: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY }}
- name: Detect changes
id: detect_changes
run: ./.github/actions/sync/templates.rb 'vendor/${{ matrix.repo }}' '${{ matrix.repo }}' 'sync-templates-and-ci-config'
env:
HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }}
- name: Create pull request
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38
with:
path: vendor/${{ matrix.repo }}
token: ${{ secrets.HOMEBREW_CASK_SYNC_TOKEN }}
branch: sync-templates-and-ci-config
title: Synchronize templates and CI configuration.
body: >
This pull request was created automatically by the
[`sync-templates-and-ci-config`](https://github.com/Homebrew/homebrew-cask/blob/master/.github/workflows/sync-templates-and-ci-config.yml)
workflow.
if: ${{ steps.detect_changes.outputs.pull_request == 'true' }}