diff options
Diffstat (limited to '.github/workflows/pull_request_triage.yml')
-rw-r--r-- | .github/workflows/pull_request_triage.yml | 14 |
1 files changed, 14 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..341298a0f --- /dev/null +++ b/.github/workflows/pull_request_triage.yml @@ -0,0 +1,14 @@ +on: pull_request +name: Triage Pull Request +jobs: + mainJob: + name: Triage + if: github.event.action == 'opened' || github.event.action == 'synchronize' + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + - name: Analyze and triage + uses: ohmyzsh/github-actions/pull-request-triage@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |