Skip to content

Commit

Permalink
Add update-pr-branch action to update PR branch (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 authored Aug 5, 2024
1 parent 019bb2b commit 009d4b4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/update-pr-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: PR update

on:
push:
branches:
- "main"
jobs:
autoupdate:
runs-on: ubuntu-latest
steps:
- name: Automatically update PR
uses: adRise/update-pr-branch@v0.7.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: "main"
required_approval_count: 1
require_passed_checks: false
sort: "created"
direction: "desc"
require_auto_merge_enabled: true

0 comments on commit 009d4b4

Please sign in to comment.