Files
atlantis/.github/workflows/codeql-required.yml
nitrocode 49bc17d3b9 feat(renovatebot): automerge enabled (#3123)
* feat(renovatebot): automerge enabled

* Update renovate.json5

* feat(workflows): add negative path filtering for required tests
2023-02-16 21:44:22 -08:00

39 lines
944 B
YAML

# For required checks when path filtering doesn;'t trigger the other job
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
name: "CodeQL"
on:
push:
branches: [ "main" ]
paths:
- '.github/**'
pull_request:
# The branches below must be a subset of the branches above
types:
- opened
- reopened
- synchronize
- ready_for_review
branches: [ "main" ]
paths:
- '.github/**'
jobs:
analyze:
name: Analyze
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go', 'javascript' ]
steps:
- run: 'echo "No build required"'