Labels #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Labels | |
on: | |
# For downstream repos, we want to run this on a schedule | |
# so that updates propagate automatically. Weekly is probably | |
# enough. | |
schedule: | |
- cron: "20 0 * * 0" | |
push: | |
branches: | |
- master | |
paths: | |
- .github/labels.yml | |
jobs: | |
sync-labels: | |
name: Synchronise labels | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Synchronize labels | |
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2 | |
with: | |
config-file: | | |
https://raw.githubusercontent.com/pact-foundation/.github/master/.github/labels.yml | |
.github/labels.yml |