Repo sync #1082
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reviewers - Legal | |
# **What it does**: Enforces reviews of Responsible AI (RAI) content by the GitHub legal team. Because RAI content can live anywhere in the content directory, it becomes a maintenance problem to use CODEOWNERS to enforce review on each article. | |
# **Why we have it**: RAI content must be reviewed by the GitHub legal team. | |
# **Who does it impact**: Content writers and the GitHub legal team. | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- ready_for_review | |
- reopened | |
- synchronize | |
paths: | |
- 'content/**' | |
- .github/workflows/reviewers-legal.yml | |
permissions: | |
contents: read | |
pull-requests: write | |
repository-projects: read | |
jobs: | |
codeowners-legal: | |
if: >- | |
${{ github.repository == 'github/docs-internal' && | |
!github.event.pull_request.draft && | |
!contains(github.event.pull_request.labels.*.name, 'reviewers-legal') && | |
github.event.pull_request.head.ref != 'repo-sync' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Get changed files | |
id: changed_files | |
uses: ./.github/actions/get-changed-files | |
with: | |
files: 'content/**' | |
- name: Set up Node and dependencies | |
if: steps.changed_files.outputs.filtered_changed_files | |
uses: ./.github/actions/node-npm-setup | |
- name: Check content type | |
if: steps.changed_files.outputs.filtered_changed_files | |
id: checkContentType | |
run: npm run check-content-type | |
env: | |
CHANGED_FILE_PATHS: ${{ steps.changed_files.outputs.filtered_changed_files }} | |
CONTENT_TYPE: 'rai' | |
- name: Check for reviewers-legal label, add if missing and request review | |
if: steps.checkContentType.outputs.containsContentType == 'true' | |
env: | |
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }} | |
PR: ${{ github.event.pull_request.html_url }} | |
run: | | |
gh pr edit $PR --add-reviewer github/legal-product | |
gh pr edit $PR --add-label reviewers-legal |