1
0
mirror of synced 2026-01-04 09:06:46 -05:00
Files
docs/.github/workflows/triage-issues.yml
Rachael Sewell abb1348f61 update triage action versions (#15928)
Co-authored-by: Zeke Sikelianos <zeke@sikelianos.com>
2020-10-07 11:58:27 -07:00

23 lines
597 B
YAML

name: Triage new issues
on:
issues:
types: [reopened, opened]
jobs:
triage_issues:
if: github.repository == 'github/docs'
runs-on: ubuntu-latest
steps:
- name: Label new issues with 'triage'
uses: rachmari/labeler@v1.0.4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
add-labels: "triage"
- name: Triage to project board
uses: rachmari/actions-add-new-issue-to-column@v1.1.1
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: "https://github.com/github/docs/projects/1"
column-name: "Triage"