mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
32 lines
603 B
YAML
32 lines
603 B
YAML
name: 00-pr_scanner
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize, ready_for_review]
|
|
branches:
|
|
- 'master'
|
|
- 'main'
|
|
- 'dev'
|
|
paths-ignore:
|
|
- '**.yaml'
|
|
- '**.md'
|
|
- '**.sh'
|
|
- 'website/*'
|
|
- 'examples/*'
|
|
- 'docs/*'
|
|
- 'build/*'
|
|
- '.github/*'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
pr-scanner:
|
|
permissions:
|
|
pull-requests: write
|
|
uses: ./.github/workflows/a-pr-scanner.yaml
|
|
with:
|
|
RELEASE: ""
|
|
CLIENT: test
|
|
secrets: inherit
|