Skip to content

Commit d92145b

Browse files
committed
more debugging
1 parent afb0b97 commit d92145b

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/health-metrics.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ jobs:
2222
if: |
2323
(github.event_name == 'push' && github.repository == 'firebase/firebase-android-sdk')
2424
|| (github.event_name == 'pull_request'
25+
&& github.event.action != 'labeled'
2526
&& github.event.pull_request.head.repo.full_name == github.repository)
2627
runs-on: ubuntu-latest
2728
steps:
28-
- name: Dump GitHub context
29-
run: echo '${{ toJSON(github) }}'
3029
- uses: actions/checkout@v3
3130
with:
3231
fetch-depth: 2
@@ -132,3 +131,13 @@ jobs:
132131
- name: Run startup-time tests (post-submit)
133132
if: ${{ github.event_name == 'push' }}
134133
run: fireci macrobenchmark ci --push
134+
135+
debug-github:
136+
name: Debug GitHub Context
137+
runs-on: ubuntu-latest
138+
steps:
139+
- name: Debug
140+
run: |
141+
echo '${{ toJSON(github) }}'
142+
echo '${{ github.event.action == 'labeled' }}'
143+
echo '${{ github.event.action != 'labeled' }}'

0 commit comments

Comments
 (0)