-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 1.04 KB
/
sync_labels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Sync labels
on:
workflow_dispatch:
inputs:
repo:
description: 'Repository'
required: true
type: choice
options:
# System
- rehlds/.github
- rehlds/rehlds.github.io
- rehlds/testdemos
# Projects
- rehlds/ReHLDS
- rehlds/ReGameDLL_CS
- rehlds/ReAPI
- rehlds/Metamod-R
- rehlds/ReVoice
- rehlds/ReUnion
- rehlds/ReSemiclip
- rehlds/ReFreeLook
- rehlds/ReChecker
# Archieved
- rehlds/resemiclip_old
- rehlds/relocalizebugfix
- rehlds/reamxmodx
- rehlds/hitboxtracker
- rehlds/metamod-r.org
jobs:
sync:
name: Sync ${{ inputs.repo }} labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: micnncim/action-label-syncer@v1
with:
manifest: .github/labels.yml
repository: |
${{ inputs.repo }}
token: ${{ secrets.REHLDS_LABELS_PAT }}