1
0
mirror of synced 2026-01-02 03:04:13 -05:00
Files
docs/.github/workflows/triage-pull-requests.yml
Ramya Parimi 0e832db758 Update triage-pull-requests.yml (#22292)
* Update triage-pull-requests.yml

* Update triage-pull-requests.yml

* Update triage-pull-requests.yml

* Update .github/workflows/triage-pull-requests.yml

Co-authored-by: Robert Sese <robert.sese@gmail.com>

Co-authored-by: Robert Sese <robert.sese@gmail.com>
2021-10-20 17:44:39 +00:00

34 lines
834 B
YAML

name: Triage new pull requests
# **What it does**:
# **Why we have it**:
# **Who does it impact**:
on:
pull_request_target:
types:
- reopened
- opened
permissions:
pull-requests: write
repository-projects: write
issues: write
jobs:
triage_pulls:
if: ${{ github.repository == 'github/docs' }}
runs-on: ubuntu-latest
steps:
- name: Label new pull requests with 'triage'
uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90
with:
add-labels: 'triage'
- name: Triage to project board
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: 'https://github.com/github/docs/projects/1'
column-name: 'Triage'