Skip to content

Commit

Permalink
Add update-pr-branch action to update PR branch (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 authored May 3, 2024
1 parent 5b7fe8b commit 951b698
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/[email protected]
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 951b698

Please sign in to comment.