File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,25 @@ jobs:
26
26
exclude-release-only-dispatch-input-value : false
27
27
link-azle-dispatch-input-value : false
28
28
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
+
29
43
build-templates :
30
44
name : Build templates for Dependabot
31
45
needs : workflow-config
32
46
if : ${{ needs.workflow-config.outputs.is-dependabot == 'true' }}
33
47
runs-on : ubuntu-latest
34
- env :
35
- GPG_SIGNING_KEY : ${{ secrets.GPG_SIGNING_KEY }}
36
- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37
48
steps :
38
49
- uses : actions/checkout@v4
39
50
with :
You can’t perform that action at this time.
0 commit comments