summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pull_request_triage.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pull_request_triage.yml b/.github/workflows/pull_request_triage.yml
new file mode 100644
index 000000000..77ec4ce79
--- /dev/null
+++ b/.github/workflows/pull_request_triage.yml
@@ -0,0 +1,15 @@
+on: pull_request
+name: Triage Pull Request
+jobs:
+ triage:
+ name: Triage
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+ if: github.event.action == 'opened' || github.event.action == 'synchronize'
+ - name: Analyze and triage
+ uses: ohmyzsh/github-actions/pull-request-triage@master
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ DEBUG_ACTIONS: ${{ secrets.DEBUG_ACTIONS }}