markmikkelsen is updating dicm2nii #3
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: Update dicm2nii | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| run-name: ${{ github.actor }} is updating dicm2nii | |
| on: | |
| schedule: | |
| - cron: 0 0 * * 1 # Every monday | |
| workflow_dispatch: | |
| jobs: | |
| update-dicm2nii: | |
| if: github.repository_owner == 'xiangruili' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout gannet repo | |
| uses: actions/checkout@v3 | |
| - name: Checkout dicm2nii repo | |
| uses: actions/checkout@v3 | |
| with: | |
| repository: xiangruili/dicm2nii | |
| path: dicm2nii_tmp/ | |
| - name: Copy files from separate repo to current repo | |
| run: | | |
| rsync -av --exclude '.git' dicm2nii_tmp/ dicm2nii/ | |
| rm -rf dicm2nii_tmp/ | |
| - name: Create pull request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: Sync with xiangruili/dicm2nii repo | |
| assignees: markmikkelsen | |
| base: main | |
| delete-branch: true | |
| title: '[BOT] update dicm2nii' | |
| body: Done by a [GitHub Action](https://github.com/bids-standard/bids-matlab/blob/main/.github/workflows/update_dicm2nii.yml) |