Skip to content

Commit

Permalink
(maint) created local '.github/workflows/label-sync.yml' from remote …
Browse files Browse the repository at this point in the history
…'.github/workflows/label-sync.yml'
  • Loading branch information
choco-sync committed Jan 9, 2024
1 parent 93eb217 commit 24d578a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync labels
on:
workflow_dispatch:
schedule:
# Run at the end of the day (most likely UTC)
- cron: "0 0 * * *"

jobs:
labels:
# We use ubuntu as the image, as it is typically faster and cheaper (on private repos).
runs-on: ubuntu-latest

steps:
# uncomment the uses line if additional configuration in the current
# repository is used.
#- uses: actions/checkout@v3.0.2
- uses: EndBug/label-sync@v2.3.2
with:
config-file: |
https://raw.githubusercontent.com/chocolatey/.github/main/.github/labels.yml
request-token: ${{ secrets.SYNC_TOKEN }} # Used when getting the config files.
delete-other-labels: false # After initial run, and verification change this to true
dry-run: false
token: ${{ secrets.SYNC_TOKEN }} # Used when updating the labels on the repository.

0 comments on commit 24d578a

Please sign in to comment.