FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github-docs/.github/workflows/codeowners-docs-engineering.yml at main · Fryguy/github-docs · GitHub
Fryguy
/
github-docs
Public
forked from
github/docs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
github-docs
/
.github
/
workflows
/
codeowners-docs-engineering.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
59 lines (53 loc) · 1.97 KB
Breadcrumbs
github-docs
/
.github
/
workflows
/
codeowners-docs-engineering.yml
Copy path
File metadata and controls
59 lines (53 loc) · 1.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name
:
Codeowners - Docs Engineering
#
**What it does**: Automatically add reviewers based on paths, but only for the docs-internal repo.
#
And sets the 'engineering' label on the PR. It also edits the PR body to add a template
#
for asking questions for the sake of being confident about the PRs rollout.
#
**Why we have it**: So we can have reviewers automatically without getting open source notifications.
#
**Who does it impact**: Docs team.
on
:
pull_request
:
types
:
-
edited
-
opened
-
ready_for_review
-
reopened
-
synchronize
paths
:
-
'
**.js
'
-
'
**.ts
'
-
'
**.tsx
'
-
'
**.scss
'
-
'
src/**
'
-
'
!src/**.json
'
#
So that Docs Engineering isn't reviewing automated pipeline data PRs
-
'
!src/**.yml
'
#
So that Docs Engineering isn't reviewing automated pipeline data PRs
-
'
.github/**
'
-
'
**Dockerfile
'
-
'
package*.json
'
-
.github/workflows/codeowners-docs-engineering.yml
jobs
:
codeowners-docs-engineering
:
if
:
>-
${{ github.repository == 'github/docs-internal' &&
!github.event.pull_request.draft &&
!contains(github.event.pull_request.labels.*.name, 'engineering') &&
github.event.pull_request.head.ref != 'repo-sync' }}
runs-on
:
ubuntu-latest
env
:
GH_TOKEN
:
${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
PR
:
${{ github.event.pull_request.html_url }}
steps
:
-
name
:
Check out repo
uses
:
actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
#
v4.1.1
-
name
:
Label as engineering
run
:
gh pr edit $PR --add-label engineering
-
name
:
Add Docs Engineering as a reviewer
run
:
|
needs_review=$(
gh pr view $PR --json reviews |
jq '.reviews |
length == 0 or all(.author.login == "${{github.event.pull_request.user.login}}")'
)
if $needs_review
then
gh pr edit $PR --add-reviewer github/docs-engineering
fi
Back
|
FazBrowse Home
|
New Git URL