expand the catalogue to include parcellations that are not part of Free/FastSurfer (create separate story for this later) #310
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: "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 |