Apply Formula Safe Settings #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Apply Formula Safe Settings | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| dry-run: | |
| description: Whether to run in `dry-run` mode or not | |
| required: false | |
| type: boolean | |
| default: true | |
| permissions: {} | |
| jobs: | |
| apply-safe-settings: | |
| permissions: | |
| contents: read | |
| # This is required to work with environment secrets in the called workflow | |
| secrets: inherit # zizmor: ignore[secrets-inherit] | |
| uses: ./.github/workflows/libsafe-settings.yml | |
| with: | |
| config-path: formula-safe-settings | |
| dry-run: ${{ inputs.dry-run }} |