-
-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (35 loc) · 1 KB
/
syncbase.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
name: "Step 1, Sync generate.yml from Base Builder"
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
push:
branches:
- 'main'
paths:
- '.github/data/*'
- 'conf/*'
- '.github/workflows/syncbase.yml'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.VM_TOKEN }}
- name: Using main branch
run: |
git switch main || (git fetch --all && git checkout -b main origin/main)
git clone https://github.com/vmactions/base-builder.git
- name: Sync generate.yml
uses: vmactions/[email protected]
with:
datafile: .github/data/datafile.ini
files: |
base-builder/.github/tpl/generate.tpl.yml : .github/workflows/generate.yml
- uses: EndBug/add-and-commit@v9
with:
message: "Sync from base-builder"
pull: '--rebase --autostash '
add: |
.github/workflows/generate.yml