Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 927 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 927 Bytes

GitHub action to automatically rebase PRs

Build Status

After installation simply comment /rebase to trigger the action:

rebase-action

Installation

To configure the action simply add the following lines to your .github/main.workflow workflow file:

workflow "Automatic Rebase" {
  on = "issue_comment"
  resolves = "Rebase"
}

action "Rebase" {
  uses = "docker://cirrusactions/rebase:latest"
  secrets = ["GITHUB_TOKEN"]
}