diff --git a/.github/workflows/manage-labels.yml b/.github/workflows/manage-labels.yml new file mode 100644 index 0000000..3690f60 --- /dev/null +++ b/.github/workflows/manage-labels.yml @@ -0,0 +1,17 @@ +name: Manage org labels +on: + workflow_dispatch: + schedule: + - cron: '0 9 * * *' + + jobs: + sync: + runs-on: ubuntu-latest + permissions: + contents: read + issues: write + steps: + - uses: actions/checkout@v4 + - uses: actions-automation/manage-your-labels@v0.1.0 + with: + github-token: ${{ secrets.ORG_LABEL_SYNC_TOKEN }}