Skip to content

Commit

Permalink
feat(gha): Add GitHub repo files (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzickap authored Jan 30, 2024
1 parent 1bbd07a commit 867808f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
automerge: true,
automergeType: "branch",
extends: [
"config:recommended",
":disableDependencyDashboard",
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ env:
# https://docs.renovatebot.com/self-hosted-configuration/#dryrun
# Run renovate in dry-run mode if executed in branches other than main - prevents versions in PRs/branches from being updated
RENOVATE_DRY_RUN: "${{ inputs.dryRun || ( github.head_ref || github.ref_name ) != 'main' || false }}"
# Renovate Automerge
RENOVATE_AUTOMERGE_TYPE: "branch"
RENOVATE_AUTOMERGE: "true"

permissions: read-all

Expand Down
2 changes: 2 additions & 0 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ REPOSITORY_DEVSKIM_ARGUMENTS: --ignore-globs CHANGELOG.md --ignore-rule-ids DS16
# Communication Over HTTP
REPOSITORY_KICS_ARGUMENTS: --exclude-queries 2e8d4922-8362-4606-8c14-aa10466a1ce3

REPOSITORY_TRIVY_ARGUMENTS: --ignorefile .trivyignore.yml --severity HIGH,CRITICAL

TERRAFORM_TFLINT_UNSECURED_ENV_VARIABLES:
- GITHUB_TOKEN

Expand Down
13 changes: 8 additions & 5 deletions lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,21 @@ accept = [999]
############################# Exclusions ##########################

# Exclude URLs and mail addresses from checking (supports regex)
# https://github.com/cotes2020/jekyll-theme-chirpy/issues/758
exclude = [
# Ignore Docker Hub
'https://hub.docker.com',
'https://non-existing-domain.com/',
# Ignore all URLs with '$' - BASH variable in URL
'\$',
# Ignore all URLs with '{ ... }' - BASH / Ansible variable in URL
'%7B.*%7D',
# Ignore all URLs which starts with 'file://'
'file://'
]

# Exclude these filesystem paths from getting checked
exclude_path = [
"CHANGELOG.md",
]

# Exclude all private IPs from checking.
# Equivalent to setting `exclude_private`, `exclude_link_local`, and
# `exclude_loopback` to true
exclude_all_private = false
exclude_all_private = true

0 comments on commit 867808f

Please sign in to comment.