Write a workflow to print the secrets.
name: print secrets
on:
workflow_dispatch:
jobs:
print:
runs-on: ubuntu-latest
environment: main
steps:
- name: foobar
run: 'echo "The secret FOO is: ${{ secrets.FOO }}"'
- name: barfoo
run: 'echo "The secret BAR is: ${{ secrets.BAR }}"'
.github/workflows/print-secrets.yaml