Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit 116267c

Browse files
committed
Improve GH Actions
1 parent 32cbb83 commit 116267c

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ jobs:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323
uses: lycheeverse/[email protected]
2424
with:
25-
args: --no-progress --exclude-path CHANGELOG.md --exclude-all-private --exclude 'GITHUB_SHA%7D|_VERSION%7D|_TYPE%7D' -- './**/*.md'
25+
args: --no-progress --exclude-path CHANGELOG.md --exclude-all-private --exclude 'GITHUB_SHA%7D|_VERSION%7D|_TYPE%7D' .
2626
fail: true

.github/workflows/linter.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ name: Lint Code Base
1717
on:
1818
workflow_dispatch:
1919
push:
20-
branches-ignore:
21-
- main
2220

2321
###############
2422
# Set the Job #
@@ -44,11 +42,11 @@ jobs:
4442
# Run Linter against code base #
4543
################################
4644
- name: Lint Code Base
47-
uses: docker://ghcr.io/github/super-linter:slim-v4
45+
uses: github/super-linter/slim@v4
4846
env:
4947
FILTER_REGEX_EXCLUDE: "(CHANGELOG.md)"
5048
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5149
LINTER_RULES_PATH: .
52-
VALIDATE_ALL_CODEBASE: false
50+
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
5351
VALIDATE_ANSIBLE: false
5452
VALIDATE_JSCPD: false

.github/workflows/mega-linter.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@ name: MegaLinter
44
on:
55
workflow_dispatch:
66
push:
7-
branches-ignore:
8-
- main
9-
10-
env:
11-
APPLY_FIXES: all
12-
APPLY_FIXES_EVENT: pull_request
13-
APPLY_FIXES_MODE: commit
147

158
concurrency:
169
group: ${{ github.ref }}-${{ github.workflow }}

.github/workflows/renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
paths:
2525
- ".github/renovate.json5"
2626
schedule:
27-
- cron: "0 * * * *"
27+
- cron: "4 4 * * *"
2828

2929
env:
3030
LOG_LEVEL: info

0 commit comments

Comments
 (0)