I have a repo that has bamboo spec defined, and when the plan is created it is adding a checkout source code task that i have not defined in the spec. How do i stop this; as i dont need the job to check out any code, just run a script?
---
version: 2
plan:
project-key: TEST
key: XTEST
name: Test
stages:
- Default Stage:
jobs:
- Default Job
Default Job:
key: JOB1
tasks:
- script:
interpreter: WINDOWS_POWER_SHELL
scripts:
- |-
. write-host "hello"
Add line below to your specs
repositories: []
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.