build(deps): bump proto-plus from 1.24.0 to 1.25.0 #617
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Auto-merge Dependabot PRs that upgrade patch or minor versions if CI passes | |
# Copied from https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request | |
# Also see https://github.com/dependabot/fetch-metadata | |
name: Dependabot auto-merge | |
on: | |
pull_request: | |
branches: main | |
workflow_dispatch: | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/[email protected] | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Enable auto-merge for Dependabot PRs | |
if: > | |
! contains(steps.metadata.outputs.dependency-names, 'tlslite-ng') && | |
steps.metadata.outputs.update-type != 'version-update:semver-major' | |
run: gh pr merge --auto --rebase "$PR_URL" | |
- name: "Warn that we won't auto-merge major version updates" | |
if: steps.metadata.outputs.update-type == 'version-update:semver-major' | |
run: gh pr comment "$PR_URL" -b "Looks like a major version upgrade! Skipping auto-merge." |