9780349443256 2024-09-14 #460
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 Stock | |
on: | |
issues: | |
types: [labeled, edited] | |
jobs: | |
Validation: | |
if: contains( github.event.issue.labels.*.name, 'stocks') | |
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: "stocks" |