Skip to content

Commit

Permalink
ci: add labels action
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Aug 20, 2020
1 parent 68b1f6f commit dd5d95d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/labels.yml
@@ -0,0 +1,22 @@

name: Synchronize Issue Labels

on:
workflow_dispatch:
push:
branches:
- master

jobs:
milestone:
name: Synchronize Issue Labels
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Synchronize Issue Labels
uses: ory/label-sync-action@v0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
dry: false
forced: true

0 comments on commit dd5d95d

Please sign in to comment.