docker/nwl-cicd.yaml: disable SCM poll for seed job

when seeding a branch other than the default one the poll
detects a SCM change and triggers right after a new seed job
which might revert the jobs seeded by the previous job run.
With this behavior it won't be possible to seed a specific
and run the intentionaly seeded jobs.
Thus, this commit disables SCM poll.

Signed-off-by: Marc Mattmüller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmüller 2023-09-04 08:38:40 +02:00
parent be603724d2
commit 1840ec74ea
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ jobs:
credentials('gitCredentials') credentials('gitCredentials')
} }
extensions { extensions {
disableRemotePoll()
wipeWorkspace() wipeWorkspace()
} }
} }