/1b_openai_config.yml Secret
Created
November 14, 2023 23:22
putting the bots to work 1b_openai_config.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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