Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .azure-pipelines/common-templates/checkout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,7 @@ steps:
git pull
git status

- task: Bash@3
displayName: "Update Git Submodules"
inputs:
targetType: inline
script: |
git pull --recurse-submodules
git submodule update --init --recursive --remote

Comment on lines -35 to -42
Copy link
Member

@peombwa peombwa Feb 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is breaking the weekly OpenAPI refreshes. We still need to update the AutoREST submodule from the remote before we can use it; otherwise, you'll get this error: https://microsoftgraph.visualstudio.com/Graph%20Developer%20Experiences/_build/results?buildId=68036&view=logs&j=cf6261d7-9a9d-56e6-29df-71d75249ff94&t=5e28baed-0a38-5f5d-2604-06f99369333d.

I'll revert this change.

- task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
displayName: "Run CredScan"
inputs:
debugMode: false
debugMode: false
7 changes: 7 additions & 0 deletions .azure-pipelines/integrated-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ trigger:
- releases/*
- bugfixes/*
- features/*
exclude:
- DocsGeneration/*

pr:
branches:
exclude:
- DocsGeneration/*

stages:
- stage: ComputeVersion
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-helpdocs-pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
createHelpsDocsPR:
if: github.event_name == 'push'
if: github.event_name == 'push' && contains(toJson(github.event.commits), '[run ci]') && !contains(toJson(github.event.commits), 'NO_CI') && !contains(toJson(github.event.commits), '[ci skip]') && !contains(toJson(github.event.commits), '[skip ci]')
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
Expand Down
2 changes: 1 addition & 1 deletion tools/GenerateHelp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ $ModulesToGenerate | ForEach-Object {
Write-Warning "v1.0 Docs for $ModuleName not Found"
}
git status
git commit -m "Docs Generation for $ModuleName [skip ci]"
git commit -m "Docs Generation for $ModuleName [run ci]"
}

Write-Host -ForegroundColor Green "-------------Done-------------"