We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55ae4ab commit e09f808Copy full SHA for e09f808
.markdownlint.yml .github/linters/.markdown-lint.yml.markdownlint.yml renamed to .github/linters/.markdown-lint.yml
.github/workflows/checkmarx.yaml
@@ -1,5 +1,11 @@
1
name: Checkmarx One Scan
2
3
+# ↓ lock down top‐level permissions to only what we use
4
+permissions:
5
+ contents: read # we only need to checkout code
6
+ actions: read # to query workflows/runs
7
+ pull-requests: write # to comment on or label PRs
8
+
9
on:
10
pull_request:
11
branches: [ '**' ]
.github/workflows/ci.yaml
@@ -8,10 +8,9 @@ permissions:
# Run on pushes to any branch and pull requests
push:
- branches: ['main']
+ branches-ignore: ['main']
12
13
- branches: ['**']
14
-
+ branches: ['main']
15
jobs:
16
# Lint all YAML, JSON & Shell
17
lint:
0 commit comments