Add migrate lab

This commit is contained in:
j-dunham
2023-09-07 16:18:58 -04:00
parent 4b04f91a54
commit c8437b934f
2 changed files with 80 additions and 1 deletions
@@ -0,0 +1,26 @@
image: atlassian/default-image:3
pipelines:
default:
- parallel:
- step:
name: 'Build and Test'
script:
- echo "Your build and test goes here..."
- step:
name: 'Lint'
script:
- echo "Your linting goes here..."
- step:
name: 'Security scan'
script:
- echo "Your security scan goes here..."
- step:
name: 'Deployment to Staging'
script:
- echo "Your deployment to staging script goes here..."
- step:
name: 'Deployment to Production'
trigger: 'manual'
script:
- echo "Your deployment to production script goes here..."