File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,10 @@ jobs:
22
22
if : |
23
23
(github.event_name == 'push' && github.repository == 'firebase/firebase-android-sdk')
24
24
|| (github.event_name == 'pull_request'
25
+ && github.event.action != 'labeled'
25
26
&& github.event.pull_request.head.repo.full_name == github.repository)
26
27
runs-on : ubuntu-latest
27
28
steps :
28
- - name : Dump GitHub context
29
- run : echo '${{ toJSON(github) }}'
30
29
- uses : actions/checkout@v3
31
30
with :
32
31
fetch-depth : 2
@@ -132,3 +131,13 @@ jobs:
132
131
- name : Run startup-time tests (post-submit)
133
132
if : ${{ github.event_name == 'push' }}
134
133
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' }}'
You can’t perform that action at this time.
0 commit comments