Skip to content

Commit

Permalink
ci: fix PR labeler (#3254)
Browse files Browse the repository at this point in the history
This commit ensures that the PR labeler action is working as expected again.
  • Loading branch information
rickstaa authored Nov 18, 2024
1 parent 9127cce commit 6a8fa52
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
dependencies:
- changed-files:
- any-glob-to-any-file:
- "**/go.mod"
- "**/go.sum"
- "**/requirements.txt"

docker:
- changed-files:
- any-glob-to-any-file:
- "docker/**"

github_actions:
- changed-files:
- any-glob-to-any-file:
- ".github/workflows/*.yml"
- ".github/workflows/*.yaml"

go:
- changed-files:
- any-glob-to-any-file:
- "**/*.go"

ai:
- changed-files:
- any-glob-to-any-file:
- "ai/**"
- "**/ai_*.go"
2 changes: 2 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Label PRs
on:
pull_request:
types: [opened, reopened]
pull_request_target:
types: [opened, reopened]

Expand Down

0 comments on commit 6a8fa52

Please sign in to comment.