This repository was archived by the owner on May 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +8
-12
lines changed Expand file tree Collapse file tree 6 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 1
1
skip-check :
2
- # Base64 High Entropy String
3
- - CKV_SECRET_6
4
2
# The build output cannot be affected by user parameters other than the build entry point and the top-level source location. GitHub Actions workflow_dispatch inputs MUST be empty
5
3
- CKV_GHA_7
Original file line number Diff line number Diff line change 1
1
---
2
2
name : Bug report
3
3
about : Create a report to help us improve
4
- title : ' Bug: This is a sample issue title'
4
+ title : " Bug: This is a sample issue title"
5
5
labels : bug
6
6
assignees : ruzickap
7
-
8
7
---
9
8
10
9
** Describe the bug**
Original file line number Diff line number Diff line change 1
1
---
2
2
name : Proposal
3
3
about : Suggest an idea for this project
4
- title : ' Proposal: This is a sample title'
4
+ title : " Proposal: This is a sample title"
5
5
labels : proposal
6
6
assignees : ruzickap
7
-
8
7
---
9
8
10
9
** Is your feature request related to a problem? Please describe**
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ permissions: read-all
12
12
jobs :
13
13
mega-linter :
14
14
runs-on : ubuntu-latest
15
+ timeout-minutes : 30
15
16
steps :
16
17
- name : Checkout Code
17
18
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -27,12 +28,13 @@ jobs:
27
28
run : |
28
29
set -euxo pipefail
29
30
echo '#!/usr/bin/env bash' > README.sh
30
- find . -name '*.md' -print0 | while IFS= read -r -d '' FILE ; do
31
+ find . -name '*.md' -print0 | while IFS= read -r -d '' FILE; do
31
32
# Extract: ```bash ... ```
32
33
sed -n "/^\`\`\`\(bash\|shell\)$/,/^\`\`\`$/p" "${FILE}" | sed '/^```*/d' >> README.sh
33
34
# Extract: ```bash ... ```
34
35
sed -n "/^ \`\`\`\(bash\|shell\)$/,/^ \`\`\`$/p" "${FILE}" | sed '/^ ```*/d; s/^ //' >> README.sh
35
36
done
37
+ ls -la README.sh
36
38
chmod a+x README.sh
37
39
38
40
- name : 💡 MegaLinter
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: stale
3
3
4
4
on :
5
5
schedule :
6
- - cron : " 30 1 * * *"
6
+ - cron : " 9 9 * * *"
7
7
8
8
permissions :
9
9
issues : write
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ANSIBLE_ANSIBLE_LINT_PRE_COMMANDS:
6
6
cwd : " workspace"
7
7
ANSIBLE_ANSIBLE_LINT_CONFIG_FILE : ansible/.ansible-lint
8
8
9
- BASH_SHFMT_ARGUMENTS : --indent 2 --space-redirects
9
+ BASH_SHFMT_ARGUMENTS : --case-indent -- indent 2 --space-redirects
10
10
11
11
DISABLE_LINTERS :
12
12
- MARKDOWN_MARKDOWN_LINK_CHECK # Using lychee instead
@@ -31,9 +31,7 @@ PRINT_ALPACA: false
31
31
# Disable creating report directory
32
32
REPORT_OUTPUT_FOLDER : none
33
33
34
- # Issue: https://github.com/bridgecrewio/checkov/issues/3839
35
- # The build output cannot be affected by user parameters other than the build entry point and the top-level source location. GitHub Actions workflow_dispatch inputs MUST be empty
36
- REPOSITORY_CHECKOV_ARGUMENTS : --skip-check CKV_GHA_7
34
+ REPOSITORY_CHECKOV_ARGUMENTS : --quiet
37
35
38
36
# Do not leave debug code in production, Insecure URL
39
37
REPOSITORY_DEVSKIM_ARGUMENTS : --ignore-globs CHANGELOG.md --ignore-rule-ids DS162092,DS137138
You can’t perform that action at this time.
0 commit comments