chore: allow manual nightly-tests pipeline run
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon 2026-01-28 12:07:51 +01:00
parent 67e06e12ce
commit 858a0fc0d0
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2
3 changed files with 27 additions and 1 deletions

View file

@ -134,6 +134,26 @@ just test-all --max-failures 5
- Executes daily at 2 AM via cron trigger
- Pipeline name: `nightly-tests`
**Manual Execution:**
The nightly pipeline can be manually triggered using:
**Drone CLI:**
```bash
drone build start <owner>/<repo> <branch> --event custom
```
**Drone Web UI:**
- Navigate to the repository in Drone
- Go to the `nightly-tests` pipeline
- Click "Run" or "Restart" and select event type `custom`
**Example:**
```bash
# Trigger nightly-tests pipeline manually
drone build start local-it/mitgliederverwaltung main --event custom
```
---
## Best Practices for New Performance Tests