[STORY] create the session label using patientID and study date with four underscore between them. #398
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 |