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

Improve GH Actions #398

Merged
merged 1 commit into from
Jun 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: lycheeverse/[email protected]
with:
args: --no-progress --exclude-path CHANGELOG.md --exclude-all-private --exclude 'GITHUB_SHA%7D|_VERSION%7D|_TYPE%7D' -- './**/*.md'
args: ". --no-progress --exclude-path CHANGELOG.md --exclude-all-private --exclude 'GITHUB_SHA%7D|_VERSION%7D|_TYPE%7D'"
fail: true
6 changes: 2 additions & 4 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ name: Lint Code Base
on:
workflow_dispatch:
push:
branches-ignore:
- main

###############
# Set the Job #
Expand All @@ -44,11 +42,11 @@ jobs:
# Run Linter against code base #
################################
- name: Lint Code Base
uses: docker://ghcr.io/github/super-linter:slim-v4
uses: github/super-linter/slim@v4
env:
FILTER_REGEX_EXCLUDE: "(CHANGELOG.md)"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .
VALIDATE_ALL_CODEBASE: false
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
VALIDATE_ANSIBLE: false
VALIDATE_JSCPD: false
7 changes: 0 additions & 7 deletions .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ name: MegaLinter
on:
workflow_dispatch:
push:
branches-ignore:
- main

env:
APPLY_FIXES: all
APPLY_FIXES_EVENT: pull_request
APPLY_FIXES_MODE: commit

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
paths:
- ".github/renovate.json5"
schedule:
- cron: "0 * * * *"
- cron: "4 4 * * *"

env:
LOG_LEVEL: info
Expand Down