-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (45 loc) · 1.48 KB
/
sync-with-main.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
name: Sync with main branch
on:
push:
branches:
- '*'
jobs:
sync-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Merge main -> QA-calorimeter-single-particle
uses: devmasx/[email protected]
with:
type: now
from_branch: main
target_branch: QA-calorimeter-single-particle
github_token: ${{ github.token }}
- name: Merge main -> QA-tracking-low-occupancy
uses: devmasx/[email protected]
with:
type: now
from_branch: main
target_branch: QA-tracking-low-occupancy
github_token: ${{ github.token }}
- name: Merge QA-tracking-low-occupancy -> QA-tracking-high-occupancy
uses: devmasx/[email protected]
with:
type: now
from_branch: QA-tracking-low-occupancy
target_branch: QA-tracking-high-occupancy
github_token: ${{ github.token }}
- name: Merge QA-tracking-low-occupancy -> QA-tracking-pythiajet
uses: devmasx/[email protected]
with:
type: now
from_branch: QA-tracking-low-occupancy
target_branch: QA-tracking-pythiajet
github_token: ${{ github.token }}
- name: Merge main -> QA-tracking-distortions
uses: devmasx/[email protected]
with:
type: now
from_branch: main
target_branch: QA-tracking-distortions
github_token: ${{ github.token }}