Skip to content

Bump pygithub from 1.55 to 2.5.0 #1027

Bump pygithub from 1.55 to 2.5.0

Bump pygithub from 1.55 to 2.5.0 #1027

Workflow file for this run

name: CI
on:
push:
branches: [master, release]
pull_request:
branches: [master]
release:
types: [published]
jobs:
test:
name: All checks are passed
uses: ./.github/workflows/test.yaml
secrets: inherit
approve:
name: Approve bot PR
runs-on: ubuntu-latest
if: endsWith(github.actor, '[bot]')
needs: test
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: metadata
id: metadata
if: github.actor == 'dependabot[bot]'
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for bot PRs
run: gh pr merge --auto --squash --delete-branch "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}