зеркало из https://github.com/github/docs.git
50 строки
1.7 KiB
YAML
50 строки
1.7 KiB
YAML
name: Add docs-reviewers request to the docs-content review board
|
|
|
|
# **What it does**: Adds PRs in github/github and github/audit-log-allowlists that requested a review from docs-reviewers to the docs-content review board
|
|
# **Why we have it**: To catch docs-reviewers requests in github/audit-log-allowlists
|
|
# **Who does it impact**: docs-content maintainers
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '20 */6 * * *' # Run every 6 hours at 20 minutes after
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
add-requests-to-board:
|
|
name: Add requests to board
|
|
if: ${{ github.repository == 'github/docs-internal' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out repo content
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
|
with:
|
|
node-version-file: 'package.json'
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm install @octokit/graphql
|
|
|
|
- name: Run script for audit-log-allowlists
|
|
run: |
|
|
node src/workflows/fr-add-docs-reviewers-requests.js
|
|
env:
|
|
TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
|
|
PROJECT_NUMBER: 2936
|
|
ORGANIZATION: 'github'
|
|
REPO: 'audit-log-allowlists'
|
|
REVIEWER: 'docs-reviewers'
|
|
FEATURE: 'Audit log event descriptions'
|
|
|
|
- uses: ./.github/actions/slack-alert
|
|
if: ${{ failure() && github.event_name != 'workflow_dispatch' }}
|
|
with:
|
|
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
|
|
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
|