Skip to content

Instantly share code, notes, and snippets.

@edm00se
Created November 14, 2023 23:22
putting the bots to work 1b_openai_config.yml
name: Check PR Limit
on:
pull_request:
types:
- opened
jobs:
pr_limit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install @actions/core @actions/github
- name: Run PR limit check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: node check-pr-limit.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment