-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (35 loc) · 933 Bytes
/
sync-labels.yml
File metadata and controls
39 lines (35 loc) · 933 Bytes
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
name: Sync Labels
on:
push:
branches:
- master
paths:
- .github/workflows/sync-labels.yml
- .github/labels.yml
schedule:
- cron: '0 0 * * 4'
jobs:
sync_labels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Checkout tools repo
uses: actions/[email protected]
with:
repository: RocketSurgeonsGuild/.github
path: .rsg
- name: merge files
uses: RocketSurgeonsGuild/actions/[email protected]
with:
files: '.rsg/.github/labels.yml,.github/labels.yml'
output: .github/labels.yml
- name: Run Labeler
if: success()
uses: crazy-max/[email protected]
with:
yaml_file: .github/labels.yml
skip_delete: false
dry_run: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}