From 8e86a44563b070fa1b24c3985df93187e55e35ae Mon Sep 17 00:00:00 2001 From: Matthias Kay Date: Thu, 7 Dec 2023 11:44:21 +0100 Subject: [PATCH 1/3] Create renovate-auto-approve.yml --- .github/workflows/renovate-auto-approve.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/renovate-auto-approve.yml diff --git a/.github/workflows/renovate-auto-approve.yml b/.github/workflows/renovate-auto-approve.yml new file mode 100644 index 0000000..e1b56ab --- /dev/null +++ b/.github/workflows/renovate-auto-approve.yml @@ -0,0 +1,17 @@ +--- +name: Approve all Renovate PRs automatically + +# yamllint disable-line rule:truthy +on: pull_request_target + +jobs: + auto-approve: + runs-on: ubuntu-latest + permissions: + pull-requests: write + if: github.actor == 'renovate[bot]' + steps: + - uses: hmarr/auto-approve-action@44888193675f29a83e04faf4002fa8c0b537b1e4 # v3.2.1 + with: + review-message: "Auto approved Renovate PR by organization" + github-token: ${{ secrets.PAT_FOR_PR_AUTO_APPROVAL }} From a5ff9d9901903ebc03e9689861d5225f54311a96 Mon Sep 17 00:00:00 2001 From: Matthias Kay Date: Thu, 7 Dec 2023 11:47:10 +0100 Subject: [PATCH 2/3] Create cspell.json --- .config/cspell.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .config/cspell.json diff --git a/.config/cspell.json b/.config/cspell.json new file mode 100644 index 0000000..8074551 --- /dev/null +++ b/.config/cspell.json @@ -0,0 +1,33 @@ +{ + "version": "0.2", + "language": "en", + "words": [ + "cpus", + "Hapag", + "Infracost", + "oidc", + "Repology", + "tflint", + "tfsec" + ], + "ignoreWords": [ + "amannn", + "codeowners", + "codeql", + "datasource", + "dorny", + "hmarr", + "ibiqlik", + "kayman", + "ludeeus", + "markdownlint", + "mktemp", + "rhysd", + "ruleset", + "sarif", + "shellcheck", + "shuf", + "shunsuke", + "signoff" + ] +} From 07ddbc04e1206f860155e75b0ffbcfe528d3ce58 Mon Sep 17 00:00:00 2001 From: Matthias Kay Date: Thu, 7 Dec 2023 11:49:03 +0100 Subject: [PATCH 3/3] Update spelling.yml --- .github/workflows/spelling.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index 1817216..4f4fc31 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -1,5 +1,5 @@ --- -name: 'Check spelling' +name: "Check spelling" # yamllint disable-line rule:truthy on: @@ -13,6 +13,6 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 # yamllint disable-line rule:comments - - uses: streetsidesoftware/cspell-action@52cba17693dc12d7d8f521631037008a17c93e53 # v5.0.0 + - uses: streetsidesoftware/cspell-action@6043e383e6abacdc8b8a0d97756586da8d0d985d # v5.1.0 with: - config: .cspell.json + config: .config/cspell.json