2019-08-13 14:15:14 +02:00
|
|
|
on: pull_request
|
|
|
|
name: Triage Pull Request
|
|
|
|
jobs:
|
2019-08-13 15:10:15 +02:00
|
|
|
triage:
|
2019-08-13 14:15:14 +02:00
|
|
|
name: Triage
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-13 15:10:15 +02:00
|
|
|
if: github.event.action == 'opened' || github.event.action == 'synchronize'
|
2019-08-13 14:15:14 +02:00
|
|
|
- name: Analyze and triage
|
|
|
|
uses: ohmyzsh/github-actions/pull-request-triage@master
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2019-08-18 15:13:46 +02:00
|
|
|
DEBUG_ACTIONS: ${{ secrets.DEBUG_ACTIONS }}
|