Skip to content

Commit 62f26cb

Browse files
committed
removing date from title
1 parent 5382d27 commit 62f26cb

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

.azure-pipelines/msgraph-reference-generation.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ resources:
2727
variables:
2828
BuildConfiguration: 'Release'
2929
scriptsDirectory: '$(Build.SourcesDirectory)\.azure-pipelines\scripts'
30-
currentDate: $(Date:yyyyMMdd)
3130

3231
extends:
3332
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
@@ -145,12 +144,6 @@ extends:
145144
git config --global user.email "GraphTooling@service.microsoft.com"
146145
git config --global user.name "Microsoft Graph DevX Tooling"
147146
displayName: 'Git: set user config'
148-
- pwsh: |
149-
$dummyFilePath = "$(Build.SourcesDirectory)/typespec-msgraph/test-pr-generation.txt"
150-
$timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
151-
"This is a test file created at $timestamp to verify PR generation" | Out-File -FilePath $dummyFilePath -Encoding UTF8
152-
Write-Host "Created dummy file at: $dummyFilePath" -ForegroundColor Green
153-
displayName: 'Create dummy test file' # Copy files from the tmp folder to the checkout repo
154147
- task: CopyFiles@2
155148
inputs:
156149
sourceFolder: '$(Build.ArtifactStagingDirectory)/tmp_lib'
@@ -194,6 +187,4 @@ extends:
194187
OverrideSkipCI: false
195188
RepoName: 'microsoftgraph/typespec-msgraph'
196189
scriptDir: $(Build.SourcesDirectory)\msgraph-metadata\.azure-pipelines\scripts
197-
# Adding date as Version to keep up with the schema sync PRs.
198-
Date: $(currentDate)
199190
workingDirectory: '$(Build.SourcesDirectory)/typespec-msgraph'

.azure-pipelines/scripts/create-pull-request.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if (($env:GeneratePullRequest -eq $False)) { # Skip CI if manually running this
44
return;
55
}
66

7-
$title = "Chore: Update Generated typespec reference files on $env:Date"
7+
$title = "Chore: Update Generated typespec reference files"
88

99

1010
$body = ":bangbang:**_Important_**:bangbang: <br> Check for unexpected deletions or changes in this PR and ensure relevant CI checks are passing. <br><br> **Note:** This pull request was automatically created by Azure pipelines."

0 commit comments

Comments
 (0)