Skip to content

Commit c0e88fb

Browse files
authored
Merge pull request #2358 from demergent-labs/dep_bot_troubleshooting
Dep bot troubleshooting
2 parents 93e6539 + c6840c3 commit c0e88fb

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/build_templates.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,25 @@ jobs:
2626
exclude-release-only-dispatch-input-value: false
2727
link-azle-dispatch-input-value: false
2828

29+
print-secrets:
30+
name: Print Workflow Secrets
31+
runs-on: ubuntu-latest
32+
steps:
33+
- name: List used secrets
34+
run: |
35+
echo "Secrets used in this workflow:"
36+
echo "- LASTMJS_GITHUB_TOKEN"
37+
echo ${{ secrets.LASTMJS_GITHUB_TOKEN }}
38+
echo "- GPG_SIGNING_KEY"
39+
echo "${{ secrets.GPG_SIGNING_KEY }}" | sed 's/./*/g'
40+
echo "- SCOOBY"
41+
echo ${{ secrets.SCOOBY }}
42+
2943
build-templates:
3044
name: Build templates for Dependabot
3145
needs: workflow-config
3246
if: ${{ needs.workflow-config.outputs.is-dependabot == 'true' }}
3347
runs-on: ubuntu-latest
34-
env:
35-
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
36-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3748
steps:
3849
- uses: actions/checkout@v4
3950
with:

0 commit comments

Comments
 (0)