25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
258 B

  1. workflow "Autorebase branch on merge commits" {
  2. on = "push"
  3. resolves = ["rebase"]
  4. }
  5. workflow "Autorebase PR on merge commits" {
  6. on = "pull_request"
  7. resolves = ["rebase"]
  8. }
  9. action "rebase" {
  10. uses = "ljharb/rebase@latest"
  11. secrets = ["GITHUB_TOKEN"]
  12. }