-
Notifications
You must be signed in to change notification settings - Fork 3.2k
41 lines (34 loc) · 1.18 KB
/
generate-code-owners.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Update CODEOWNERs
on:
push:
paths:
- "extensions/**/package.json"
branches: [main, master]
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
if: github.repository == 'raycast/extensions'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: raycast/github-actions/setup-node@master
- name: Generate
working-directory: scripts
run: ./generate-code-owners.js
- name: Commit
uses: raycast/github-actions/git-commit@master
with:
repo_dir: ${{ github.workspace }}
message: "Update CODEOWNERs"
- name: Notify Failure to Slack
if: failure()
uses: raycast/github-actions/slack-send@master
with:
webhook: ${{ secrets.SLACK_RELEASE_CHANNEL_WEBHOOK_URL }}
color: "danger"
text: |
:no_entry_sign: ${env.GITHUB_WORKFLOW} has failed
<${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}|Action logs> | <${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/commit/${ env.GITHUB_SHA }|Commit: ${ env.GITHUB_SHA.substr(0,8) }>