You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# **What it does**: Automatically adds the "ready-for-doc-review" label to DIY docs PRs that contain content or data changes when they are opened in a non-draft state or converted from draft to ready for review.
4
+
# **Why we have it**: To ensure DIY docs PRs are automatically added to the docs-content review board without requiring manual labeling.
5
+
# **Who does it impact**: Contributors making content changes and docs-content reviewers.
6
+
7
+
on:
8
+
pull_request:
9
+
types:
10
+
- opened
11
+
- ready_for_review
12
+
paths:
13
+
- 'content/**'
14
+
- 'data/**'
15
+
16
+
permissions:
17
+
contents: read
18
+
pull-requests: write
19
+
20
+
jobs:
21
+
add-review-label:
22
+
name: Add ready-for-doc-review label to DIY docs PRs
0 commit comments