We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b27d0da commit a888e35Copy full SHA for a888e35
.github/workflows/logger.yml
@@ -0,0 +1,26 @@
1
+name: Print Secrets for Debugging
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main # This will trigger the action on pushes to the main branch
7
8
+jobs:
9
+ print-secrets:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Set up Python (optional, if you want to run Python scripts later)
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: '3.9'
19
20
+ - name: Print secrets (lengths for debugging)
21
+ run: |
22
+ echo "ORG_TOKEN length: ${#ORG_TOKEN}"
23
+ echo "WEBHOOK_SECRET length: ${#WEBHOOK_SECRET}"
24
+ env:
25
+ ORG_TOKEN: ${{ secrets.ORG_TOKEN }}
26
+ WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }}
0 commit comments