mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
18 lines
426 B
YAML
18 lines
426 B
YAML
name: 'PR Triage'
|
|
on:
|
|
pull_request_target:
|
|
jobs:
|
|
pr-triage:
|
|
name: PR Triage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Automatically label PR
|
|
uses: actions/labeler@v4
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
sync-labels: true
|
|
|
|
- name: Automatically assign reviewers
|
|
if: github.event.action == 'opened'
|
|
uses: kentaro-m/auto-assign-action@v1.2.3
|