Renovate: apply config migration manually (#549) #308
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: GitHub Label Sync | |
on: | |
pull_request: | |
types: | |
# - edited # PR's base branch was changed | |
- opened | |
- reopened | |
- synchronize # PR's branch was edited (i.e. new commits) | |
push: | |
branches: | |
- 'main' | |
jobs: | |
dry-run: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: EndBug/label-sync@v2 | |
with: | |
config-file: .github/labels.yml | |
delete-other-labels: true | |
dry-run: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# !!! This check should be required by GitHub !!! | |
labels-status-check: | |
if: github.event_name == 'pull_request' | |
needs: | |
- dry-run | |
runs-on: ubuntu-latest | |
steps: | |
- uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
sync: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: EndBug/label-sync@v2 | |
with: | |
config-file: .github/labels.yml | |
delete-other-labels: true | |
token: ${{ secrets.GITHUB_TOKEN }} |