web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 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. }