9781599326634 2024-08-25 #102
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 Offers | |
on: | |
issues: | |
types: [labeled, edited] | |
jobs: | |
Validation: | |
if: contains( github.event.issue.labels.*.name, 'offers') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo | |
run: echo "Check complete" | |
Execution: | |
name: Runner | |
uses: ./.github/workflows/block-runner.yml | |
needs: Validation | |
with: | |
content: ${{ github.event.issue.body }} | |
label: "offers" |