Merge branch 'master' into gambit_light_sync #65
This file contains hidden or 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 Files from GambitBSM/gambit:gambit_light_sync to GambitBSM/gambit_light:gambit_light_sync | |
| on: | |
| push: | |
| branches: | |
| - gambit_light_sync | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| # runs-on: [self-hosted, macOS, Arm64] | |
| runs-on: [self-hosted, Linux, X64] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # arch: [Arm64] | |
| arch: [X64] | |
| defaults: | |
| run: | |
| shell: bash -eo pipefail {0} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@master | |
| # This action expects a file .github/sync.yml containing the | |
| # the list of files to be included in the sync process. | |
| - name: Run GitHub File Sync | |
| # uses: maikenp/repo-file-sync-action@v0.0 | |
| uses: BetaHuhn/repo-file-sync-action@v1 | |
| with: | |
| # The value of the secret has to be a valid GitHub access token | |
| GH_PAT: ${{ secrets.GAMBIT_LIGHT_SYNC_SECRET }} | |
| PR_BODY: "***This PR is auto-created to ensure that files are synced with GambitBSM/gambit:gambit_light_sync***" |