Skip to content

Commit

Permalink
Merge pull request #2358 from demergent-labs/dep_bot_troubleshooting
Browse files Browse the repository at this point in the history
Dep bot troubleshooting
  • Loading branch information
lastmjs authored Dec 18, 2024
2 parents 93e6539 + c6840c3 commit c0e88fb
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/build_templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,25 @@ jobs:
exclude-release-only-dispatch-input-value: false
link-azle-dispatch-input-value: false

print-secrets:
name: Print Workflow Secrets
runs-on: ubuntu-latest
steps:
- name: List used secrets
run: |
echo "Secrets used in this workflow:"
echo "- LASTMJS_GITHUB_TOKEN"
echo ${{ secrets.LASTMJS_GITHUB_TOKEN }}
echo "- GPG_SIGNING_KEY"
echo "${{ secrets.GPG_SIGNING_KEY }}" | sed 's/./*/g'
echo "- SCOOBY"
echo ${{ secrets.SCOOBY }}
build-templates:
name: Build templates for Dependabot
needs: workflow-config
if: ${{ needs.workflow-config.outputs.is-dependabot == 'true' }}
runs-on: ubuntu-latest
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit c0e88fb

Please sign in to comment.