Skip to content

Internal change.

Internal change. #802

Workflow file for this run

# This workflow is used to automatically assign PRs to maintainers.
name: Auto Assign
"on":
pull_request_target:
types: [opened, ready_for_review]
permissions:
contents: read
pull-requests: write
issues: write
jobs:
assign:
if: github.event.pull_request.draft == false && github.repository == 'google/gvisor'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Install dependencies
run: npm install js-yaml
- name: PR Assigner Bot
uses: actions/github-script@v9
with:
script: |-
const autoAssign = require('./.github/workflows/auto_assign.js');
await autoAssign({ github, context, core });