Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/pr-bot-update-reviewers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,16 @@ jobs:
update-reviewers:
# Don't run on forks
if: github.repository == 'apache/beam'
runs-on: ubuntu-latest

runs-on: [self-hosted, ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- run: npm ci
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install pr-bot npm dependencies
run: npm ci
working-directory: 'scripts/ci/pr-bot'

# Runs a set of commands using the runners shell
- run: npm run updateReviewers
env:
Expand Down