This repo is meant for Tech Phantoms config files.
Check our label config file here
use this gh action
name: Sync labels
on:
# You can run this with every type of event, but it's better to run it only when you actually need it.
workflow_dispatch:
jobs:
labels:
runs-on: ubuntu-latest
steps:
- uses: EndBug/label-sync@v2
with:
# If you want to use a config file, you can put its path or URL here (more info in the paragraphs below)
config-file: 'https://github.com/Tech-Phantoms/.github/blob/main/.github/label-list.yml'
# If you want to delete any additional label, set this to true
delete-other-labels: false
# You can change the token used to change the labels, this is the default one
token: ${{ secrets.GITHUB_TOKEN }}