mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-24 17:19:50 +00:00
meta: convert workflow file to GitHub Actions v2 yml syntax
This commit is contained in:
14
.github/workflows/pull_request_triage.yml
vendored
Normal file
14
.github/workflows/pull_request_triage.yml
vendored
Normal file
@@ -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 }}
|
||||
Reference in New Issue
Block a user