Fix labels
Some checks failed
CI/CD Pipeline with Secure Ephemeral PiP / test-backend (push) Failing after 2m22s
CI/CD Pipeline with Secure Ephemeral PiP / test-frontend (push) Has been skipped
CI/CD Pipeline with Secure Ephemeral PiP / build-backend (push) Has been skipped
CI/CD Pipeline with Secure Ephemeral PiP / build-frontend (push) Has been skipped
CI/CD Pipeline with Secure Ephemeral PiP / deploy-prod (push) Has been skipped

This commit is contained in:
continuist 2025-09-08 21:31:34 -04:00
parent 0cba0a3593
commit 42797fbb95

View file

@ -27,7 +27,7 @@ env:
jobs:
test-backend:
runs-on: [self-hosted, ci]
runs-on: [ci]
steps:
- uses: actions/checkout@v4
@ -112,7 +112,7 @@ jobs:
run: podman rm -f ci-pip-${{ env.RUN_ID }} 2>/dev/null || true
test-frontend:
runs-on: [self-hosted, ci]
runs-on: [ci]
needs: test-backend
steps:
- uses: actions/checkout@v4
@ -154,7 +154,7 @@ jobs:
run: podman rm -f ci-pip-${{ env.RUN_ID }} 2>/dev/null || true
build-backend:
runs-on: [self-hosted, ci]
runs-on: [ci]
needs: test-frontend
steps:
- uses: actions/checkout@v4
@ -205,7 +205,7 @@ jobs:
run: podman rm -f ci-pip-${{ env.RUN_ID }} 2>/dev/null || true
build-frontend:
runs-on: [self-hosted, ci]
runs-on: [ci]
needs: test-frontend
steps:
- uses: actions/checkout@v4
@ -256,7 +256,7 @@ jobs:
run: podman rm -f ci-pip-${{ env.RUN_ID }} 2>/dev/null || true
deploy-prod:
runs-on: [self-hosted, prod]
runs-on: [prod]
needs: [build-backend, build-frontend]
if: success()
steps: