diff --git a/azure-pipelines-staging-test.yml b/azure-pipelines-staging-test.yml index 4710430..cf64d68 100644 --- a/azure-pipelines-staging-test.yml +++ b/azure-pipelines-staging-test.yml @@ -19,15 +19,15 @@ jobs: clean: true fetchDepth: 1 persistCredentials: true - - script: | - git fetch origin main:main - if git merge-base --is-ancestor $(Build.SourceVersion) main; then - echo "This commit is in the main branch." - else - echo "This commit is not in the main branch." - exit 1 - fi - displayName: 'タグが付けられたCommitがmainブランチに存在するか確認' + # - script: | + # git fetch origin main:main + # if git merge-base --is-ancestor $(Build.SourceVersion) main; then + # echo "This commit is in the main branch." + # else + # echo "This commit is not in the main branch." + # exit 1 + # fi + # displayName: 'タグが付けられたCommitがmainブランチに存在するか確認' - job: backend_build dependsOn: initialize condition: succeeded('initialize')