diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index faa15b59..e87a4628 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -1,4 +1,5 @@ -name: Links +--- +name: links on: workflow_dispatch: @@ -12,7 +13,7 @@ on: permissions: read-all jobs: - linkChecker: + links: runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/markdown-check.yml b/.github/workflows/markdown-check.yml index 7bbca4b7..f7371550 100644 --- a/.github/workflows/markdown-check.yml +++ b/.github/workflows/markdown-check.yml @@ -1,3 +1,4 @@ +--- name: markdown-check on: diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index da4e06b6..58bde51e 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -1,5 +1,5 @@ --- -name: MegaLinter +name: mega-linter on: workflow_dispatch: @@ -10,8 +10,7 @@ on: permissions: read-all jobs: - build: - name: MegaLinter + mega-linter: runs-on: ubuntu-latest steps: - name: Checkout Code @@ -28,7 +27,7 @@ jobs: run: | set -euxo pipefail echo '#!/usr/bin/env bash' > README.sh - find . -name '*.md' -print0 | while IFS= read -r -d '' FILE ; do + find . -name '*.md' -print0 | while IFS= read -r -d '' FILE; do # Extract: ```bash ... ``` sed -n "/^\`\`\`\(bash\|shell\)$/,/^\`\`\`$/p" "${FILE}" | sed '/^```*/d' >> README.sh # Extract: ```bash ... ``` diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index faff21af..89a06880 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -12,7 +12,7 @@ permissions: pull-requests: write jobs: - release-please-pr: + release-please: runs-on: ubuntu-latest steps: - uses: google-github-actions/release-please-action@cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e # v4.0.2 diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index cc55c469..1380b376 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -1,5 +1,5 @@ --- -name: Renovate +name: renovate on: workflow_dispatch: @@ -20,7 +20,7 @@ on: - main - "!renovate/*" schedule: - - cron: "0 0,2,4 * * *" + - cron: "0 0,2,4 * * 0" env: # https://docs.renovatebot.com/troubleshooting/#log-debug-levels @@ -44,7 +44,7 @@ jobs: renovate: runs-on: ubuntu-latest concurrency: - group: renovate + group: ${{ github.workflow }}-${{ github.ref }} steps: - name: Checkout uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index 90d4309c..fbaa8d15 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -1,4 +1,5 @@ -name: Semantic Pull Request +--- +name: semantic-pull-request on: pull_request_target: @@ -11,8 +12,7 @@ permissions: pull-requests: read jobs: - main: - name: Semantic Pull Request + semantic-pull-request: runs-on: ubuntu-latest steps: - uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0 diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e872faa8..1c370eb3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,4 +1,5 @@ -name: Close stale issues and PRs +--- +name: stale on: schedule: @@ -9,7 +10,7 @@ permissions: pull-requests: write jobs: - mark-stale-issues-and-prs: + stale: runs-on: ubuntu-latest steps: - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 diff --git a/.gitignore b/.gitignore index bdf002b9..8baa4bfa 100644 --- a/.gitignore +++ b/.gitignore @@ -6,8 +6,6 @@ kubeconfig*.conf* # Vuepress Pages docs/.vuepress/dist -docs/.vuepress/.temp/ -docs/.vuepress/.cache/ # tmp directory tmp/ @@ -20,8 +18,3 @@ README.sh # demo-magic.sh script demo-magic.sh - -# Terraform files -.terraform -*.tfstate* -crash.log