fix(ci): remove invalid secrets context from job-level if condition

This commit is contained in:
Jacob Magar 2026-04-05 11:52:02 -04:00
parent 94b11ff982
commit 1c6a9d737a

View file

@ -77,14 +77,12 @@ jobs:
name: MCP Integration Tests
runs-on: ubuntu-latest
needs: [lint, typecheck, test]
if: >-
(github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) &&
secrets.UNRAID_API_URL != '' &&
secrets.UNRAID_API_KEY != ''
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Run integration tests
continue-on-error: true
env:
UNRAID_API_URL: ${{ secrets.UNRAID_API_URL }}
UNRAID_API_KEY: ${{ secrets.UNRAID_API_KEY }}