Skip to content

Commit 20a69d2

Browse files
authored
[GH] Add GH action to auto clean up codeowners file (#24557)
1 parent 86c74be commit 20a69d2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Weekly codeowners cleanup
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 0 1 * *"
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
cleanowners:
12+
name: cleanowners
13+
runs-on: ubuntu-latest
14+
permissions:
15+
issues: write
16+
17+
steps:
18+
- name: Run cleanowners action
19+
uses: github/cleanowners@v1
20+
env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
ORGANIZATION: cloudflare

0 commit comments

Comments
 (0)