Skip to content

Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 in /tool/makepr #6

Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 in /tool/makepr

Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 in /tool/makepr #6

Workflow file for this run

name: Merge bot PR after CI
on: pull_request
permissions:
contents: write
pull-requests: write
# checks: read # For private repositories
# actions: read # For private repositories
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected]
- uses: actions/checkout@v3
- name: Wait other jobs
# if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
uses: kachick/[email protected]
timeout-minutes: 30
- name: Approve and merge
# if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
run: gh pr review --approve "$PR_URL" && gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'