1
0
mirror of synced 2025-12-30 03:01:36 -05:00
Files
docs/.github/workflows/triage-issues.yml
Ramya Parimi 2d89e169c9 Update triage-issues.yml (#22137)
Added

`permissions:
  repository-projects: write`
2021-10-13 12:00:17 +00:00

33 lines
785 B
YAML

name: Triage new issues
# **What it does**:
# **Why we have it**:
# **Who does it impact**:
on:
issues:
types:
- reopened
- opened
permissions:
issues: write
repository-projects: write
jobs:
triage_issues:
if: ${{ github.repository == 'github/docs' }}
runs-on: ubuntu-latest
steps:
- name: Label new issues 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'