9798741424513 2021-10-07 #489
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: Add Now and Next | |
on: | |
issues: | |
types: [labeled, edited] | |
jobs: | |
Validation: | |
if: contains( github.event.issue.labels.*.name, 'next') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo | |
run: echo "Check complete" | |
Execution: | |
name: Runner | |
uses: ./.github/workflows/runner.yml | |
needs: Validation | |
with: | |
content: ${{ github.event.issue.body }} | |
label: "next" |