We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a32cfc commit 5164144Copy full SHA for 5164144
.github/workflows/updateNotification.yml
@@ -13,12 +13,14 @@ jobs:
13
contents: write
14
pull-requests: write
15
steps:
16
- - name: Dump GitHub context
+ - name: Print GitHub context
17
+ uses: actions/github-script@v5
18
+ with:
19
+ script: |
20
+ console.log(JSON.stringify(github, null, 2))
21
+ - name: GitHub REF
22
id: github_context_step
- env:
- GITHUB_CONTEXT_ECHO: ${{ toJson(github) }}
23
run: |
- echo '$GITHUB_CONTEXT_ECHO'
24
echo "$GITHUB_REF repo=${{github.event.repository.full_name}}"
25
26
- uses: actions/checkout@v4
0 commit comments