Skip to content

build(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 in /test/linters/go_modules/go_modules_bad #1

build(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 in /test/linters/go_modules/go_modules_bad

build(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 in /test/linters/go_modules/go_modules_bad #1

---
name: Dependabot automation
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- synchronize
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
# This doesn't trigger an automated merge because we require at approvals
- name: Enable auto-merge
run: gh pr merge --auto --squash --delete-branch "${PR_URL}"
...