blocklist.txt: remove HARD_CODE_KEY gitlab findings #2329
This file contains 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: loop | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: [main] | |
permissions: | |
actions: read | |
contents: read | |
pull-requests: write | |
security-events: write | |
jobs: | |
loop: | |
name: loop | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- run: | | |
pwd | |
tree -a | |
shell: bash | |
- uses: ./actions/main | |
with: | |
debug: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
gh_to_slack_user_map: ${{ secrets.GH_TO_SLACK_USER_MAP }} |