Skip to content

Commit

Permalink
add: automated create labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ukwhatn committed Jun 1, 2024
1 parent fb16a12 commit 97b371f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- color: 495057
name: automated pr
description: Pull requests created by GitHub Actions
- color: 0b7285
name: dependencies
description: Pull requests that update dependencies
- color: 1864ab
name: sync-template
description: Pull requests that sync the template repository
14 changes: 14 additions & 0 deletions .github/workflows/update-pr-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Update labels

on: pull_request
jobs:
build:
name: Sync labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: micnncim/action-label-syncer@v0.3.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
manifest: .github/labels.yml

0 comments on commit 97b371f

Please sign in to comment.