9780349443256 2024-09-14 #457
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" |