Skip to content

Commit 910c598

Browse files
author
Tim Roes
authored
Add CODEOWNERS and notify workflow (#10275)
* Create CODEOWNERS for frontend code * Add notification on label workflow * Add empty nl
1 parent 4826578 commit 910c598

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/CODEOWNERS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Frontend code
2+
/airbyte-webapp/ @airbytehq/frontend
3+
/airbyte-webapp-e2e-tests/ @airbytehq/frontend

.github/workflows/notify-on-label.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Notify team
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
jobs:
8+
notify:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: jenschelkopf/[email protected]
12+
with:
13+
message: 'cc {recipients}'
14+
# Specify a map of label -> team/user to notify
15+
recipients: |
16+
area/frontend=@airbytehq/frontend

0 commit comments

Comments
 (0)