summaryrefslogtreecommitdiff
path: root/.github/workflows/pull_request_triage.yml
blob: 77ec4ce79264d4d399b17956c24c21033052d49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 }}