- Designed trunk-based development workflow with branch protection - Added workflow validation job to prevent main branch breaks - Integrated act (GitHub Actions runner) for local Gitea workflow testing - Created unified CI/CD script interface (scripts/cicd.sh) - Added YAML lint configuration with practical limits (400 chars) - Organized all CI/CD scripts under scripts/cicd/ directory - Confirmed Gitea/GitHub Actions compatibility via local testing - Updated ADR 0017 with implementation details and test results - Enhanced documentation with local development workflow See ADR-0017 for complete trunk-based development workflow documentation. See ADR-0016 for CI/CD pipeline design.
33 lines
728 B
YAML
33 lines
728 B
YAML
# DanceLessonsCoach YAML Lint Configuration
|
|
# More practical limits for CI/CD workflow files
|
|
|
|
extends: default
|
|
|
|
rules:
|
|
# Increase line length limit to 400 characters
|
|
line-length:
|
|
max: 400
|
|
level: warning # Change to warning instead of error
|
|
|
|
# Allow truthy values (workflow_dispatch: true)
|
|
truthy:
|
|
allowed-values: ['true', 'false', 'on', 'off']
|
|
|
|
# Be more lenient with trailing spaces
|
|
trailing-spaces:
|
|
level: warning
|
|
|
|
# Document start required for workflow files
|
|
document-start:
|
|
present: false
|
|
|
|
# Allow empty values
|
|
empty-values:
|
|
forbid-in-block-mappings: false
|
|
forbid-in-flow-mappings: false
|
|
|
|
# Ignore specific files
|
|
ignore: |
|
|
.gitea/workflows/
|
|
scripts/cicd/
|