This commit is contained in:
hagen-danswer 2024-09-11 11:41:40 -07:00
parent 475e528697
commit d304e3fd0f
2 changed files with 1 additions and 5 deletions

View File

@ -14,11 +14,9 @@ jobs:
run-tests: ${{ steps.check.outputs.run-tests }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: check
run: |
if git diff --name-only ${{ github.event.pull_request.base.sha }}...${{ github.sha }} | grep -q '^backend/'; then
if git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -q '^backend/'; then
echo "run-tests=true" >> $GITHUB_OUTPUT
else
echo "run-tests=false" >> $GITHUB_OUTPUT

View File

@ -7,8 +7,6 @@ on:
merge_group:
pull_request:
branches: [ main ]
paths:
- 'backend/**'
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}