mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-02-16 16:20:37 -07:00
15 lines
258 B
HCL
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"]
|
|
}
|