mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
Auto-Update Changed Version in Other Files After Dependabot PRs (#3716)
This commit is contained in:
parent
c185137c9e
commit
4c8d7332db
1 changed files with 37 additions and 0 deletions
37
.github/workflows/dependabot-prs.yml
vendored
Normal file
37
.github/workflows/dependabot-prs.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
name: Process Dependabot PRs
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, synchronize, reopened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
process-dependabot-prs:
|
||||||
|
permissions:
|
||||||
|
pull-requests: read
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Fetch Dependabot metadata
|
||||||
|
id: dependabot-metadata
|
||||||
|
uses: dependabot/fetch-metadata@v1.5.1
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3.5.2
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.ref }}
|
||||||
|
|
||||||
|
- name: Update Version Number in Other Files
|
||||||
|
uses: jacobtomlinson/gha-find-replace@v3
|
||||||
|
with:
|
||||||
|
find: ${{ steps.dependabot-metadata.outputs.previous-version }}
|
||||||
|
replace: ${{ steps.dependabot-metadata.outputs.new-version }}
|
||||||
|
regex: false
|
||||||
|
|
||||||
|
- name: Commit & Push Changes to PR
|
||||||
|
uses: EndBug/add-and-commit@v9.1.3
|
||||||
|
with:
|
||||||
|
message: 'Update version number in other files'
|
||||||
|
committer_name: GitHub Actions
|
||||||
|
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
|
Loading…
Reference in a new issue