From 5fc8e5f332d8014eece0757702694c2f0a38640d Mon Sep 17 00:00:00 2001 From: CarlTern Date: Mon, 2 Oct 2023 17:20:02 +0200 Subject: [PATCH] Make Debricked scan references more explicit Signed-off-by: CarlTern --- examples/templates/Azure/azure-pipelines.yml | 2 +- examples/templates/Bitbucket/bitbucket-pipelines.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/templates/Azure/azure-pipelines.yml b/examples/templates/Azure/azure-pipelines.yml index b473850a..37b38843 100644 --- a/examples/templates/Azure/azure-pipelines.yml +++ b/examples/templates/Azure/azure-pipelines.yml @@ -1,5 +1,5 @@ jobs: -- job: debricked +- job: debricked_scan displayName: Debricked scan pool: vmImage: 'ubuntu-latest' diff --git a/examples/templates/Bitbucket/bitbucket-pipelines.yml b/examples/templates/Bitbucket/bitbucket-pipelines.yml index 26dd6fc3..0b9f24cb 100644 --- a/examples/templates/Bitbucket/bitbucket-pipelines.yml +++ b/examples/templates/Bitbucket/bitbucket-pipelines.yml @@ -5,7 +5,7 @@ image: definitions: pipelines: - Debricked: &Debricked + debricked-scan: &debricked-scan - step: name: "Debricked Scan" script: @@ -16,4 +16,4 @@ definitions: pipelines: default: - - <<: *Debricked + - <<: *debricked-scan