Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 8s
QA Debug / 🏗️ Prepare & Install (push) Failing after 51s
Nightly QA / call-qa-workflow (push) Failing after 51s
🚀 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
🚀 Build & Deploy / 🏗️ Build (push) Has been cancelled
26 lines
762 B
YAML
26 lines
762 B
YAML
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 4
|
|
|
|
jobs:
|
|
call-qa-workflow:
|
|
uses: mmintel/at-mintel/.gitea/workflows/quality-assurance-template.yml@hardened-cleanup
|
|
with:
|
|
TARGET_URL: 'https://testing.mb-grid-solutions.com'
|
|
PROJECT_NAME: 'mb-grid-solutions'
|
|
secrets:
|
|
GOTIFY_URL: ${{ secrets.GOTIFY_URL }}
|
|
GOTIFY_TOKEN: ${{ secrets.GOTIFY_TOKEN }}
|
|
GATEKEEPER_PASSWORD: ${{ secrets.GATEKEEPER_PASSWORD || vars.GATEKEEPER_PASSWORD }}
|
|
NPM_TOKEN: ${{ secrets.REGISTRY_PASS || secrets.NPM_TOKEN }}
|
|
GITEA_PAT: ${{ secrets.REGISTRY_PASS || secrets.GITEA_PAT }}
|
|
|