label-sync #576
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: label-sync | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: | |
- main | |
paths: | |
- 'hack/label_sync/labels.yaml' | |
workflow_dispatch: | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Save GitHub token | |
run: | | |
mkdir -p ./secrets | |
echo "${{ secrets.GH_TOKEN_LABEL_SYNC }}" > ./secrets/oauth | |
working-directory: ./hack/label_sync/ | |
- name: Apply labels to 3scale-ops repos | |
working-directory: ./hack/label_sync/ | |
run: make run-3scale-ops | |
- name: Apply labels to 3scale repos | |
working-directory: ./hack/label_sync/ | |
run: make run-3scale |