Skip to content

Commit f82e6b4

Browse files
committed
Fix check name and 1add print debugging
1 parent f01ddd2 commit f82e6b4

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/check-links.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
linkchecker:
88
runs-on: ubuntu-latest
99
# We only want to run this after the Netlify deploy preview has successfully been deployed.
10-
if: ${{ github.event.check_run.name == 'netlify/cal-itp-mobility-marketplace/deploy-preview' && github.event.check_run.conclusion == 'success' }}
10+
if: ${{ github.event.check_run.name == 'netlify/compiler-actions-testing/deploy-preview' && github.event.check_run.conclusion == 'success' }}
1111

1212
steps:
1313
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # 7.0.1
@@ -19,3 +19,11 @@ jobs:
1919
- run: |
2020
pip install linkchecker
2121
linkchecker --check-extern -v ${{ github.event.check_run.details_url }}
22+
23+
debug-event-context:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- env:
27+
EVENT_CONTEXT: ${{ toJSON(github.event) }}
28+
run: |
29+
echo $EVENT_CONTEXT

0 commit comments

Comments
 (0)