fix(security): harden OAuth and fetch_tags redirects, keep region auto-discovery #242
Workflow file for this run
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: Shell Format Check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'bash/**' | |
| - '.github/workflows/shell_format.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| shfmt: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - name: Run shfmt with reviewdog | |
| uses: reviewdog/action-shfmt@650566520dd8dfd3ac8f4129754a0aa342fdda4d # v1.0.4 | |
| with: | |
| fail_on_error: true | |
| workdir: 'bash' | |
| shfmt_flags: '-i 4 -ci' | |