Merge pull request #31 from sPHENIX-Collaboration/dependabot/pip/torn… #107
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 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 }} | |