You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host "##vso[task.LogIssue type=error;]Changes to selected files under '.github/' directory should not be made in this Repo`n${filesInCommonDir}"
35
+
Write-Host "##vso[task.LogIssue type=error;]Changes to selected workflow and shared skill files under '.github/' should not be made in this Repo`n${filesInCommonDir}"
33
36
Write-Host "##vso[task.LogIssue type=error;]Follow the workflow at https://github.com/Azure/azure-sdk-tools/blob/main/doc/engsys_workflows_and_skills.md"
Copy file name to clipboardExpand all lines: eng/common/scripts/Delete-RemoteBranches.ps1
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,8 @@ param(
6
6
$CentralRepoId,
7
7
# We start from the sync PRs, use the branch name to get the PR number of central repo. E.g. sync-eng/common-(<branchName>)-(<PrNumber>). Have group name on PR number.
8
8
# For sync-eng/common work, we use regex as "^sync-eng/common.*-(?<PrNumber>\d+).*$".
9
-
# For sync-.github work, we use regex as "^sync-.github.*-(?<PrNumber>\d+).*$".
9
+
# For sync-.github and sync-.github-skills work, we use regex as
10
+
# "^sync-\.github.*-(?<PrNumber>\d+).*$".
10
11
$BranchRegex,
11
12
# When set, directly delete this exact branch name without querying all branches.
12
13
# This is a fast path that avoids the expensive GraphQL branch listing and rate limit
0 commit comments