9781529146165 2024-08-01 #162
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 Quotes | |
on: | |
issues: | |
types: [labeled, edited] | |
jobs: | |
Validation: | |
if: contains( github.event.issue.labels.*.name, 'quotes') | |
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: "quotes" |