Skip to content

Commit

Permalink
Add github action for labels sync
Browse files Browse the repository at this point in the history
  • Loading branch information
Sorabh Hamirwasia committed May 9, 2024
1 parent 48da1b8 commit f425c34
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/sync_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Sync labels
on:
schedule:
- cron: "*/5 * * * *"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Synchronize labels
uses: julbme/gh-action-manage-label@v1
with:
from: https://github.com/sohami/.github/tree/main/.github/config/labels.yml
skip_delete: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f425c34

Please sign in to comment.