Skip to content

Commit

Permalink
Add common dependabot-auto-merge workflow | ignore broken gosec linte…
Browse files Browse the repository at this point in the history
…r warning (#36)

* Add dependabot auto-merge common workflow

* Ignore slice access out of bounds warning while broken

securego/gosec#1005
  • Loading branch information
dopey committed Oct 3, 2023
1 parent a31172b commit d556f60
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .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}}

1 change: 1 addition & 0 deletions .golangci.yml
Expand Up @@ -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"
Expand Down

0 comments on commit d556f60

Please sign in to comment.