...

Text file src/github.com/ory/fosite/.github/workflows/labels.yml

Documentation: github.com/ory/fosite/.github/workflows

     1name: Synchronize Issue Labels
     2
     3on:
     4  workflow_dispatch:
     5  push:
     6    branches:
     7      - master
     8
     9jobs:
    10  milestone:
    11    if: github.repository_owner == 'ory'
    12    name: Synchronize Issue Labels
    13    runs-on: ubuntu-latest
    14    steps:
    15      - name: Checkout
    16        uses: actions/checkout@v2
    17      - name: Synchronize Issue Labels
    18        uses: ory/label-sync-action@v0
    19        with:
    20          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    21          dry: false
    22          forced: true

View as plain text