mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-08-10 16:32:28 +00:00
25 lines
580 B
YAML
25 lines
580 B
YAML
name: Test Issue Gate
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/scripts/issue-gate.mjs'
|
|
- '.github/scripts/issue-gate.test.mjs'
|
|
- '.github/workflows/issue-gate.yml'
|
|
- '.github/workflows/issue-gate-tests.yml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-issue-gate:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Run issue gate tests
|
|
run: node --test .github/scripts/issue-gate.test.mjs
|