mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
23 lines
441 B
YAML
23 lines
441 B
YAML
name: Label Sync
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/labels.yml'
|
|
jobs:
|
|
labeler:
|
|
name: Labeler
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run Label Sync
|
|
uses: crazy-max/ghaction-github-labeler@v3
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|