Skip to content

Commit

Permalink
Merge branch 'microsoft:master' into Tools-update-12-20
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengillie authored Jan 11, 2024
2 parents 239e9eb + 033aad5 commit a2fd01e
Show file tree
Hide file tree
Showing 2,158 changed files with 35,339 additions and 13,428 deletions.
2 changes: 2 additions & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
appinstaller
appname
apps
appsandfeaturesentries
Expand Down Expand Up @@ -38,6 +39,7 @@ screenshots
Smartscreen
ssh
standalone
submitters
tada
Testplan
toolset
Expand Down
2 changes: 2 additions & 0 deletions .github/actions/spelling/excludes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ ignore$
^\.(?!github/)
^\.github/actions/spelling/
^\.github/policies/moderatorTriggers\.yml$
^\.github/policies/flaggedPackages\.yml$
^\.github/workflows/spellCheck\.yml$
^\.github/workflows/similarissues\.yml$
(?:^|/)Tools/
(?:^|/)manifests/
(?:^|/)DevOpsPipelineDefinitions/
2 changes: 2 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
admins
automerge
craigloewen
cspell
Daa
Esco
Expand All @@ -15,6 +16,7 @@ LOCALAPPDATA
mdanish
Megamix
misclicks
msft
quhxl
redistribution
russellbanks
Expand Down
4 changes: 2 additions & 2 deletions .github/policies/labelAdded.portableTar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ configuration:
Hello @${issueAuthor},
This package appears to require suport for TAR archive extraction.
This package appears to require support for TAR archive extraction.
This PR is blocked until support for additional archive formats is implemented in:
Expand Down Expand Up @@ -58,7 +58,7 @@ configuration:
Hello @${issueAuthor},
This package appears to require suport for TAR archive extraction.
This package appears to require support for TAR archive extraction.
This PR is blocked until support for additional archive formats is implemented in:
Expand Down
2 changes: 1 addition & 1 deletion .github/policies/labelManagement.issueUpdated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ configuration:
- activitySenderHasPermission:
permission: Write
then:
# Don't remove Changes-Requested here beacause it is just a re-run, no new commits have been added
# Don't remove Changes-Requested here because it is just a re-run, no new commits have been added
- removeLabel:
label: Validation-Completed
- removeLabel:
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/similarissues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: GitGudSimilarIssues comments

on:
issues:
types: [opened]

jobs:
getSimilarIssues:
runs-on: ubuntu-latest
permissions:
issues: read
outputs:
message: ${{ steps.getBody.outputs.message }}
steps:
- id: getBody
uses: craigloewen-msft/GitGudSimilarIssues@main
with:
issuetitle: ${{ github.event.issue.title }}
repo: ${{ github.repository }}
similaritytolerance: "0.7"
add-comment:
needs: getSimilarIssues
runs-on: ubuntu-latest
permissions:
issues: write
if: needs.getSimilarIssues.outputs.message != ''
steps:
- name: Add comment
run: gh issue comment "$NUMBER" --repo "$REPO" --body "$BODY"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUMBER: ${{ github.event.issue.number }}
REPO: ${{ github.repository }}
BODY: ${{ needs.getSimilarIssues.outputs.message }}
12 changes: 6 additions & 6 deletions doc/tools/PRWatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
PRWatcher includes Watch-PRTitles, to give information about pull requests (PRs) from watching their titles in your clipboard. To use, load the file contents into your PowerShell application through your desired means. (Copy/paste, Import-Module, include in Profile, et cetera.) Then run "Watch-PRTitles" and the script will monitor your clipboard, attempting to parse PackageIdentifiers and version numbers, and comparing these to WinGet's public manifest.

## Utility Functions
Additionally included are utility functions:
- Get-CleanClip to extract the PackageIdentifier.
- Search-WinGetManifest to streamline non-interactive WinGet search.
Additionally included are utility functions:
- Get-CleanClip to extract the PackageIdentifier.
- Search-WinGetManifest to streamline non-interactive WinGet search.

These are library functions also used in other Manual Validation functions, as part of the philosophy of building a declarative layer to handle operations and build objects, and an imperative layer on top to orchestrate operations. These utility functions are in the declarative layer, while Watch-PRTitles is in the imperative layer.

Expand All @@ -16,16 +16,16 @@ This script uses Auth.csv to provide hints to help a PR approver identify packag

## Features
- Logging of valid PR titles, filtering on PR # at the end.
- Default semantic versioning for more accurate versions. Failback to string-based versioning is planned to be working again soon.
- Default semantic versioning for more accurate versions. Fail-back to string-based versioning is planned to be working again soon.
- "Automatic removal" clipboard insertion of output, to paste as PR comment confirming that the newer version is already available through WinGet.

# Command Line Arguments
PRWatcher provides additional arguments for more specific functionality.
PRWatcher provides additional arguments for more specific functionality.

`Watch-PRTitles [-noNew] [-authFile C:\path\to\Auth.csv] [-LogFile C:\path\to\Log.txt]`

## -noNew
This setting prevents logging the PR title if the package isn't already in the WinGet public manifest. This allows for streamlining acceptance of existing package upgrades, so an approver can skip new packages for more thorough examination later.
This setting prevents logging the PR title if the package isn't already in the WinGet public manifest. This allows for streamlining acceptance of existing package upgrades, so an approver can skip new packages for more thorough examination later.

## -authFile
Location of Auth.csv - defaults to current path location. This might become a built-in web location in future versions.
Expand Down
2 changes: 1 addition & 1 deletion manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Automatically updated by the winget bot at 2024/Jan/05
# Automatically updated by the winget bot at 2024/Jan/11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json

PackageIdentifier: 123.123pan
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Automatically updated by the winget bot at 2024/Jan/05
# Automatically updated by the winget bot at 2024/Jan/11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json

PackageIdentifier: 123.123pan
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Automatically updated by the winget bot at 2024/Jan/05
# Automatically updated by the winget bot at 2024/Jan/11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json

PackageIdentifier: 123.123pan
Expand Down
2 changes: 1 addition & 1 deletion manifests/1/123/123pan/1.3.3.0/123.123pan.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Automatically updated by the winget bot at 2024/Jan/05
# Automatically updated by the winget bot at 2024/Jan/11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json

PackageIdentifier: 123.123pan
Expand Down
18 changes: 18 additions & 0 deletions manifests/1/123/123pan/2.0.2.0/123.123pan.installer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Created with YamlCreate.ps1 v2.2.13 $debug=QUSU.LF.7-4-0.Unix
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json

PackageIdentifier: 123.123pan
PackageVersion: 2.0.2.0
InstallerType: nullsoft
Scope: machine
InstallModes:
- interactive
- silentWithProgress
UpgradeBehavior: install
Installers:
- Architecture: x64
InstallerUrl: https://app.123pan.com/app/pc/windows/128/123pan_2.0.2.exe
InstallerSha256: A1DE45DED79E7E6B216AE47A6B44F7500CF823A2D798C883F706958B0FA873D4
ProductCode: 123pan
ManifestType: installer
ManifestVersion: 1.5.0
40 changes: 40 additions & 0 deletions manifests/1/123/123pan/2.0.2.0/123.123pan.locale.en-US.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Created with YamlCreate.ps1 v2.2.13 $debug=QUSU.LF.7-4-0.Unix
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json

PackageIdentifier: 123.123pan
PackageVersion: 2.0.2.0
PackageLocale: en-US
Publisher: 123云盘
PublisherUrl: https://www.123pan.com/
PublisherSupportUrl: https://www.123pan.com/Contactus
PrivacyUrl: https://www.123pan.com/UserPrivacy
Author: Xi'an 123 Cloud Computing Co., Ltd.
PackageName: 123云盘
PackageUrl: https://www.123pan.com/
License: Freeware
LicenseUrl: https://www.123pan.com/UserAgreement
Copyright: Copyright (c) 2023 123pan
# CopyrightUrl:
ShortDescription: Secure and trusted cloud storage content distribution platform
Description: 123pan is a cloud storage service product with large space, unlimited speed, no ads, and focus on large file transfer and distribution.
# Moniker:
Tags:
- backup
- cloud
- cloud-drive
- download
- drive
- file
- netdisk
- share
- sync
- upload
# ReleaseNotes:
# ReleaseNotesUrl:
# PurchaseUrl:
# InstallationNotes:
Documentations:
- DocumentLabel: FAQ
DocumentUrl: https://www.123pan.com/faq
ManifestType: defaultLocale
ManifestVersion: 1.5.0
40 changes: 40 additions & 0 deletions manifests/1/123/123pan/2.0.2.0/123.123pan.locale.zh-CN.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Created with YamlCreate.ps1 v2.2.13 $debug=QUSU.LF.7-4-0.Unix
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json

PackageIdentifier: 123.123pan
PackageVersion: 2.0.2.0
PackageLocale: zh-CN
Publisher: 123云盘
PublisherUrl: https://www.123pan.com/
PublisherSupportUrl: https://www.123pan.com/Contactus
PrivacyUrl: https://www.123pan.com/UserPrivacy
Author: 西安一二三云计算有限公司
PackageName: 123云盘
PackageUrl: https://www.123pan.com/
License: 免费软件
LicenseUrl: https://www.123pan.com/UserAgreement
Copyright: Copyright(c)2023 123云盘
# CopyrightUrl:
ShortDescription: 安全可信的云存储内容分发平台
Description: 123 云盘是一款空间大、不限速、无广告、专注大文件传输分发的云存储服务产品。
# Moniker:
Tags:
- 上传
- 下载
-
- 云盘
- 共享
- 分享
- 同步
- 备份
- 文件
- 网盘
# ReleaseNotes:
# ReleaseNotesUrl:
# PurchaseUrl:
# InstallationNotes:
Documentations:
- DocumentLabel: 常见问题
DocumentUrl: https://www.123pan.com/faq
ManifestType: locale
ManifestVersion: 1.5.0
8 changes: 8 additions & 0 deletions manifests/1/123/123pan/2.0.2.0/123.123pan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Created with YamlCreate.ps1 v2.2.13 $debug=QUSU.LF.7-4-0.Unix
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json

PackageIdentifier: 123.123pan
PackageVersion: 2.0.2.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.5.0

This file was deleted.

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/1/1IC/BPMN-RPAStudio/26.0.0/1IC.BPMN-RPAStudio.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Created using wingetcreate 1.5.7.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json

PackageIdentifier: 2BrightSparks.SyncBackFree
PackageVersion: 11.2.33.0
MinimumOSVersion: 10.0.0.0
InstallerType: exe
InstallModes:
- interactive
- silent
InstallerSwitches:
Silent: /verysilent
SilentWithProgress: /verysilent
Custom: /NORESTART
UpgradeBehavior: install
FileExtensions:
- sps
Installers:
- Architecture: x86
InstallerUrl: https://www.2brightsparks.com/assets/software/SyncBack/SyncBack_Setup.11.2.33.0.exe
InstallerSha256: 2CF45EAA8ED1BF3769C40D5D8AB61CA128712A246734DF34AA7A6D5D1DE6FB57
ManifestType: installer
ManifestVersion: 1.5.0
Loading

0 comments on commit a2fd01e

Please sign in to comment.