Skip to content

Commit

Permalink
ci: add debug step (#14547)
Browse files Browse the repository at this point in the history
  • Loading branch information
scotthart authored Jul 23, 2024
1 parent 4acaead commit af5b756
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ concurrency:
cancel-in-progress: true

jobs:
debug:
name: debug_job
runs-on: ubuntu-latest
steps:
- name: debug_steps
id: debug-steps
run: >
echo "event=${{ github.event_name }}; assoc=${{ github.event.pull_request.author_association }}"
pre-flight:
# Save the `ref` of the pull request, so downstream jobs know what to checkout.
environment: >-
Expand All @@ -38,6 +47,7 @@ jobs:
(github.event.pull_request.head.repo.full_name == github.repository && 'internal')
}}
name: Save PR ref
needs: [debug]
if: >-
${{
(github.event.pull_request.author_association == 'MEMBER' &&
Expand Down

0 comments on commit af5b756

Please sign in to comment.