ci: rename files to match better naming

This commit is contained in:
iCrawl
2022-07-20 22:33:23 +02:00
parent 8a6ee906a7
commit 96b62b6539
4 changed files with 1 additions and 1 deletions

23
.github/workflows/label-sync.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Label sync
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/labels.yml'
jobs:
label-sync:
name: Label sync
runs-on: ubuntu-latest
if: github.repository_owner == 'discordjs'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Label sync
uses: crazy-max/ghaction-github-labeler@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}