diff --git a/.github/workflows/label-sync.yml b/.github/workflows/label-sync.yml new file mode 100644 index 0000000..284e8de --- /dev/null +++ b/.github/workflows/label-sync.yml @@ -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.2.0 + with: + config-file: | + https://raw.githubusercontent.com/chocolatey/.github/master/.github/labels.yml + request-token: ${{ secrets.SYNC_TOKEN }} # Used when getting the config files. + delete-other-labels: true # After initial run, and verification change this to true + dry-run: false + token: ${{ secrets.SYNC_TOKEN }} # Used when updating the labels on the repository. \ No newline at end of file diff --git a/README.md b/README.md index a83a30f..eb7c702 100644 --- a/README.md +++ b/README.md @@ -565,3 +565,9 @@ Returns the list of the packages which have `update.ps1` script in its directory Helper scripts to make maintaining packages using AU even easier - [Chocolatey Core Community Maintainers Team Packages](https://github.com/chocolatey/chocolatey-coreteampackages) The [largest](https://gist.github.com/choco-bot/a14b1e5bfaf70839b338eb1ab7f8226f) repository of AU packages by far + +## Repository + +### Labels + +The labels for this repository are synchronized from the [`chocolatey/.github`](https://github.com/chocolatey/.github) repository. Any labels not part of that configuration will be deleted. If you need to create additional labels, please follow the instructions for doing so over in that repository. \ No newline at end of file