mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 03:40:08 +00:00
4974143745
Provisional measure due to "Unexpected value 'if'" error. See https://github.community/t5/GitHub-API-Development-and/jobs-lt-job-id-gt-if-not-working/m-p/28980
14 lines
407 B
YAML
14 lines
407 B
YAML
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 }}
|