💻 Codingadvanced6 variables

Create CI/CD Pipeline

Design CI/CD pipeline configurations.

cicddevopsautomation

Template

Create a {{platform}} CI/CD pipeline for: Project type: {{project_type}} Repository: {{repository_type}} Pipeline stages needed: {{stages}} Requirements: - Deployment target: {{deployment_target}} - {{additional_requirements}} Please provide the complete configuration file with comments.

Variables to Fill In

1
{{platform}}

CI/CD platform

Example: GitHub Actions

2
{{project_type}}

Project type

Example: Next.js application

3
{{repository_type}}

Repo type

Example: Monorepo with multiple packages

4
{{stages}}

Pipeline stages

Example: Lint, Test, Build, Deploy

5
{{deployment_target}}

Where to deploy

Example: Vercel

6
{{additional_requirements}}

Other requirements

Example: Cache dependencies, parallel jobs

Example Usage

Variables Used:

platform = GitLab CI
project_type = Python Django
repository_type = Standard repo
stages = Test, Build Docker, Deploy
deployment_target = AWS ECS
additional_requirements = Run migrations

Result:

Create GitLab CI pipeline for Django with testing, Docker build, and AWS ECS deployment with migrations.

Tips for Best Results

  • 1Be specific with your variables - the more detail you provide, the better the AI response.
  • 2Start with the example values if you're unsure, then customize based on your needs.
  • 3Iterate on the results - if the first response isn't perfect, refine your variables and try again.
  • 4Combine multiple templates for complex tasks that require different perspectives.