mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-08-11 00:42:48 +00:00
docs: define issue-first contribution workflow
This commit is contained in:
24
.github/workflows/issue-gate-tests.yml
vendored
Normal file
24
.github/workflows/issue-gate-tests.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
Reference in New Issue
Block a user