Skip to content

ci: Automated merge-by comments and table #1

ci: Automated merge-by comments and table

ci: Automated merge-by comments and table #1

Workflow file for this run

name: Merge-by
on:
pull_request:
types: [opened, ready_for_review]
workflow_dispatch:
schedule:
- cron: "0 11 * * *"
jobs:
rfr_add_date:
name: "Build table and notify users"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn --ignore-scripts
- uses: actions/github-script@v7
with:
script: |
const script = require("./.github/workflows/merge-by/build-table-and-notify.js");
await script({ github, context });