Skip to content

Commit 8191820

Browse files
committed
CI: Try to debug the github context
Print it out Signed-off-by: David Brown <[email protected]>
1 parent 31dfdc4 commit 8191820

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/docs.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,18 @@ jobs:
6666
name: Publish Rust Documentation
6767
needs: generate-docs
6868
runs-on: ubuntu-latest
69-
if: |
70-
github.event.workflow_run.event == 'pull_request' &&
71-
github.event.workflow_run.conclusion == 'success' &&
72-
github.repository == 'zephyrproject-rtos/zephyr-lang-rust'
69+
# if: |
70+
# github.event.workflow_run.event == 'pull_request' &&
71+
# github.event.workflow_run.conclusion == 'success' &&
72+
# github.repository == 'zephyrproject-rtos/zephyr-lang-rust'
7373

7474
steps:
75+
- name: Show github conext
76+
env:
77+
GITHUB_CONTEXT: ${{ toJson(github) }}
78+
run: |
79+
echo "$GITHUB_CONTEXT" | jq .
80+
7581
- name: Download documentation artifact
7682
uses: actions/download-artifact@v3
7783
with:

0 commit comments

Comments
 (0)