Skip to content

Commit

Permalink
chore: Add auto-label to repo (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
stahnma authored Dec 11, 2024
1 parent 2961ce0 commit efa52bf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/auto-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Apply label to new issues and PRs

on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
add-label:
runs-on: ubuntu-latest
steps:
- name: Add team label automatically to new issues and PRs
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: "${{ secrets.MANAGED_FLOXBOT_GITHUB_ACCESS_TOKEN_REPO_SCOPE }}"
labels: "team-developer-support"

0 comments on commit efa52bf

Please sign in to comment.