From d556f608644ae7d27e5ec27f2355bc901de8d546 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 3 Oct 2023 14:47:27 -0700 Subject: [PATCH] Add common dependabot-auto-merge workflow | ignore broken gosec linter warning (#36) * Add dependabot auto-merge common workflow * Ignore slice access out of bounds warning while broken https://github.com/securego/gosec/issues/1005 --- .github/workflows/dependabot-auto-merge.yml | 28 +++++++++++++++++++++ .golangci.yml | 1 + 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/dependabot-auto-merge.yml diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..86110db --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,28 @@ +name: Dependabot auto-merge + +on: + workflow_call: + secrets: + GITHUB_TOKEN: + required: true + +permissions: + contents: write + pull-requests: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: ${{ github.actor == 'dependabot[bot]' }} + steps: + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v1 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + - name: Enable auto-merge for Dependabot PRs + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + diff --git a/.golangci.yml b/.golangci.yml index fd9c8c0..db187e9 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -316,6 +316,7 @@ issues: - error strings should not be capitalized or end with punctuation or a newline - Function `URLParam->URLParam` should pass the context parameter - Function `URLParam` should pass the context parameter + - Potentially accessing slice out of bounds exclude-rules: - source: "^//\\s*go:generate\\s"