Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Daily Open PR Sync #4192

Daily Open PR Sync

Daily Open PR Sync #4192

Workflow file for this run

name: Daily Open PR Sync
on:
workflow_dispatch: ~
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: npm install
- run: npm run build
# Go through all open PRs and run the bot over them
- run: node ./dist/run.js
env:
BOT_AUTH_TOKEN: ${{ secrets.BOT_AUTH_TOKEN }}