Skip to content

Commit

Permalink
testing for the label
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Apr 15, 2024
1 parent db11ddd commit 51ef6a1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ jobs:
cat <<GITHUB_EVENT_JSON
${{toJSON(github.event)}}
GITHUB_EVENT_JSON
- name: PR Diagnostics
if: ${{ github.event_name == 'pull_request' }}
shell: bash
run: |
cat <<GITHUB_EVENT_JSON
${{toJSON(github.event.pull_request.labels)}}
GITHUB_EVENT_JSON
- name: Is This a Build-All?
if: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:build-all') }}
shell: bash
run: |
echo 'zomg yes this is a build-all PR'
- name: Checkout Code
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 51ef6a1

Please sign in to comment.