Add feature to XNAT-ingest to allow session/subject ID to be parsed from file-paths #432
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: "On Editing Issue" | |
on: | |
issues: | |
types: [opened, reopened, edited] | |
jobs: | |
populate-features: | |
if: startsWith(github.event.issue.title, '[FEATURE]') | |
uses: ./.github/workflows/populate-issue-list.yml | |
with: | |
issuetype: Epic | |
listtype: Features | |
populate-stories: | |
strategy: | |
matrix: | |
issuetype: [Epic, Feature] | |
if: startsWith(github.event.issue.title, '[STORY]') | |
uses: ./.github/workflows/populate-issue-list.yml | |
with: | |
issuetype: ${{ matrix.issuetype }} | |
listtype: Stories |