Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit bea4b14

Browse files
Add Labeler Github Action (#3433)
1 parent 172338d commit bea4b14

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed

.github/labeler.yml

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
'p: android_alarm_manager':
2+
- packages/android_alarm_manager/**/*
3+
4+
'p: android_intent':
5+
- packages/android_intent/**/*
6+
7+
'p: battery':
8+
- packages/battery/**/*
9+
10+
'p: camera':
11+
- packages/camera/**/*
12+
13+
'p: connectivity':
14+
- packages/connectivity/**/*
15+
16+
'p: cross_file':
17+
- packages/cross_file/**/*
18+
19+
'p: device_info':
20+
- packages/device_info/**/*
21+
22+
'p: e2e':
23+
- packages/e2e/**/*
24+
25+
'p: espresso':
26+
- packages/espresso/**/*
27+
28+
'p: file_selector':
29+
- packages/file_selector/**/*
30+
31+
'p: flutter_plugin_android_lifecycle':
32+
- packages/flutter_plugin_android_lifecycle/**/*
33+
34+
'p: google_maps_flutter':
35+
- packages/google_maps_flutter/**/*
36+
37+
'p: google_sign_in':
38+
- packages/google_sign_in/**/*
39+
40+
'p: image_picker':
41+
- packages/image_picker/**/*
42+
43+
'p: in_app_purchase':
44+
- packages/in_app_purchase/**/*
45+
46+
'p: integration_test':
47+
- packages/integration_test/**/*
48+
49+
'p: ios_platform_images':
50+
- packages/ios_platform_images/**/*
51+
52+
'p: local_auth':
53+
- packages/local_auth/**/*
54+
55+
'p: package_info':
56+
- packages/package_info/**/*
57+
58+
'p: path_provider':
59+
- packages/path_provider/**/*
60+
61+
'p: plugin_platform_interface':
62+
- packages/plugin_platform_interface/**/*
63+
64+
'p: quick_actions':
65+
- packages/quick_actions/**/*
66+
67+
'p: sensors':
68+
- packages/sensors/**/*
69+
70+
'p: share':
71+
- packages/share/**/*
72+
73+
'p: shared_preferences':
74+
- packages/shared_preferences/**/*
75+
76+
'p: url_launcher':
77+
- packages/url_launcher/**/*
78+
79+
'p: video_player':
80+
- packages/video_player/**/*
81+
82+
'p: webview_flutter':
83+
- packages/webview_flutter/**/*
84+
85+
'p: wifi_info_flutter':
86+
- packages/wifi_info_flutter/**/*
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This workflow applies labels to pull requests based on the
2+
# paths that are modified in the pull request.
3+
#
4+
# Edit `.github/labeler.yml` to configure labels.
5+
#
6+
# For more information, see: https://github.com/actions/labeler
7+
8+
name: Pull Request Labeler
9+
10+
on:
11+
- pull_request_target
12+
13+
jobs:
14+
label:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/labeler@main
18+
with:
19+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
20+
sync-labels: true

0 commit comments

Comments
 (0)