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"