MRtrix3 tutorial planning - updates to the FBA pipeline #425
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 |