Test/240612 4 #20
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
# --------------------------------------------------- # | |
# ------------------------ 2 ------------------------ # | |
# --------------------------------------------------- # | |
name: Approve PR and delete branch | |
on: pull_request_target | |
env: | |
PR_BRANCH: release-ci-${{ github.sha }} | |
jobs: | |
# run only for dependabot PRs | |
approve_pr_branch: | |
name: Approve PR branch | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
# Automatically approve GitHub pull requests. | |
# see: https://github.com/hmarr/auto-approve-action | |
- uses: hmarr/auto-approve-action@v4 | |
with: | |
review-message: "Auto approved automated PR by dependabot" | |
# run only for dependabot PRs | |
merge_pr_branch: | |
name: Merge PR branch | |
# we need to run this job after the approve_pr_branch job | |
needs: approve_pr_branch | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Merge and delete Changelog PR | |
run: | | |
gh pr merge --squash --auto --delete-branch ${{ env.PR_BRANCH }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |