-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start PR labelling automation (#337)
* Start PR labelling automation Start PR labelling automation * Create labeler.yml * Update labeler.yml
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
github_actions: | ||
- .github/**/* | ||
|
||
test: | ||
- test/**/* | ||
|
||
knowledge panels: | ||
- lib/model/KnowledgePanel.g.dart | ||
- lib/model/KnowledgePanelElement.g.dart | ||
|
||
product: | ||
- lib/model/Product.dart | ||
- lib/model/Product.g.dart | ||
|
||
robotoff: | ||
- lib/model/RobotoffQuestion.g.dart | ||
|
||
pubspec: | ||
- pubspec.yaml | ||
|
||
ecoscore: | ||
- lib/model/EcoscoreData.g.dart | ||
|
||
personalized search: | ||
- lib/personalized_search/**/* | ||
|
||
folksonomy: | ||
- lib/folksonomy.dart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This workflow will triage pull requests and apply a label based on the | ||
# paths that are modified in the pull request. | ||
# | ||
# To use this workflow, you will need to set up a .github/labeler.yml | ||
# file with configuration. For more information, see: | ||
# https://github.com/actions/labeler | ||
|
||
name: Labeler | ||
on: [pull_request] | ||
|
||
jobs: | ||
label: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/labeler@v2 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |