1
0
mirror of https://github.com/actions/labeler synced 2026-05-05 19:27:48 +02:00
Files
labeler/node_modules/is-callable/.github/main.workflow
David Kale 91fcbb0108 build
2020-09-08 13:25:36 -04:00

15 lines
258 B
HCL

workflow "Autorebase branch on merge commits" {
on = "push"
resolves = ["rebase"]
}
workflow "Autorebase PR on merge commits" {
on = "pull_request"
resolves = ["rebase"]
}
action "rebase" {
uses = "ljharb/rebase@latest"
secrets = ["GITHUB_TOKEN"]
}