diff --git a/.github/workflows/ci.yaml b/.github/workflows/build-scan-push.yml similarity index 85% rename from .github/workflows/ci.yaml rename to .github/workflows/build-scan-push.yml index 2652b69..730b3fe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/build-scan-push.yml @@ -9,14 +9,14 @@ on: - app.py - requirements.txt - templates/index.html - - .github/workflows/ci.yaml + - .github/workflows/build-scan-push.yml pull_request: paths: - Dockerfile - app.py - requirements.txt - templates/index.html - - .github/workflows/ci.yaml + - .github/workflows/build-scan-push.yml workflow_dispatch: env: diff --git a/README.md b/README.md index 0f1af8c..1a3811f 100644 --- a/README.md +++ b/README.md @@ -56,12 +56,15 @@ Once running, open your browser and navigate to: ``` . -├── app.py # Main Flask application -├── requirements.txt # Python dependencies -├── Dockerfile # Docker configuration -├── docker-compose.yml # Docker Compose configuration +├── .github/ +│ └── workflows/ +│ └── build-scan-push.yml # GitHub Actions CI/CD pipeline ├── templates/ │ └── index.html # HTML template +├── app.py # Main Flask application +├── requirements.txt # Python dependencies +├── Dockerfile # Docker configuration +├── docker-compose.yml # Docker Compose configuration └── README.md # This file ```