summaryrefslogtreecommitdiff
path: root/.github/main.workflow
diff options
context:
space:
mode:
Diffstat (limited to '.github/main.workflow')
-rw-r--r--.github/main.workflow17
1 files changed, 0 insertions, 17 deletions
diff --git a/.github/main.workflow b/.github/main.workflow
deleted file mode 100644
index 0dbb0247a..000000000
--- a/.github/main.workflow
+++ /dev/null
@@ -1,17 +0,0 @@
-workflow "Triage Pull Request" {
- on = "pull_request"
- resolves = ["Triage"]
-}
-
-# Only act if there are code changes: if the pull_request
-# event's action is either 'opened' (new PR) or 'synchronize' (new commits)
-action "Filter actions" {
- uses = "actions/bin/filter@0ac6d44"
- args = "action 'opened|synchronize'"
-}
-
-action "Triage" {
- needs = ["Filter actions"]
- uses = "ohmyzsh/github-actions/pull-request-triage@master"
- secrets = ["GITHUB_TOKEN"]
-}