Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 7s
Nightly QA / call-qa-workflow (push) Failing after 8s
🚀 Build & Deploy / 🏗️ Build (push) Has been cancelled
🚀 Build & Deploy / 🚀 Deploy (push) Has been cancelled
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
🚀 Build & Deploy / 🔔 Notify (push) Has been cancelled
🚀 Build & Deploy / 🧪 QA (push) Has been cancelled
23 lines
567 B
YAML
23 lines
567 B
YAML
# Trigger run with restored prepare job.
|
|
name: Nightly QA
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *' # Every night at 2:00 AM
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.gitea/workflows/qa.yml'
|
|
workflow_dispatch: # Manual trigger 5
|
|
|
|
jobs:
|
|
call-qa-workflow:
|
|
# Nightly QA: Trigger run with diagnostics.
|
|
uses: mmintel/at-mintel/.gitea/workflows/quality-assurance-template.yml@0f7cd94200676451610e2e92c286e927c3c54a9d
|
|
with:
|
|
TARGET_URL: 'https://testing.mb-grid-solutions.com'
|
|
PROJECT_NAME: 'mb-grid-solutions'
|
|
secrets: inherit
|
|
|