mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-12 06:08:55 -05:00
18 lines
341 B
YAML
18 lines
341 B
YAML
name: Auto Labeler
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Apply Triage Label
|
|
uses: actions/github@v1.0.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
args: 'label "Status: Needs Triage"'
|