forked from microsoft/winget-pkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'winget-pkgs-AUTHORING-MANIFESTS-md' of https://github.c…
…om/stephengillie/winget-pkgs into winget-pkgs-AUTHORING-MANIFESTS-md
- Loading branch information
Showing
21,342 changed files
with
372,546 additions
and
122,695 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
id: labelAdded.lastVersionRemaining | ||
name: GitOps.PullRequestIssueManagement | ||
description: Handlers when "Last-Version-Remaining" label is added | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: >- | ||
When the label "Last-Version-Remaining" is added to a pull request | ||
* Add a reply notifying the issue author | ||
* Assign to the author | ||
* Label with Needs-Author-Feedback | ||
if: | ||
- payloadType: Pull_Request | ||
- labelAdded: | ||
label: Last-Version-Remaining | ||
then: | ||
- addReply: | ||
reply: >- | ||
Hello @${issueAuthor}, | ||
This PR removes the last version of the package from the repository. | ||
Please check if the package requires an update or is available from another source. | ||
Template: msftbot/lastVersionRemaining | ||
- assignTo: | ||
author: True | ||
- addLabel: | ||
label: Needs-Author-Feedback | ||
# The policy service should trigger even when the label was added by the policy service | ||
triggerOnOwnActions: true | ||
onFailure: | ||
onSuccess: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
id: labelAdded.licenseBlocksInstall | ||
name: GitOps.PullRequestIssueManagement | ||
description: Handlers when "License-Blocks-Install" label is added | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: >- | ||
When the label "License-Blocks-Install" is added to a pull request | ||
* Add the PR specific reply notifying the issue author of a blocking issue | ||
* Label the PR with Blocking-Issue | ||
* Label with Needs-Author-Feedback | ||
* Remove the Needs-Attention Label | ||
if: | ||
- payloadType: Pull_Request | ||
- labelAdded: | ||
label: License-Blocks-Install | ||
then: | ||
- addReply: | ||
reply: >- | ||
Hello @${issueAuthor}, | ||
This package appears to require user to accept a license agreement before installation. | ||
This PR is blocked until support for agreements is added to the community repository. | ||
* See microsoft/winget-pkgs/issues/131328 | ||
Template: msftbot/blockingIssue/licenseBlocksInstall | ||
- addLabel: | ||
label: Blocking-Issue | ||
- addLabel: | ||
label: Needs-Author-Feedback | ||
- removeLabel: | ||
label: Needs-Attention | ||
# The policy service should trigger even when the label was added by the policy service | ||
triggerOnOwnActions: true | ||
- description: >- | ||
When the label "License-Blocks-Install" is added to an issue | ||
* Add the issue specific reply notifying the issue author of a blocking issue | ||
* Label the issue with Blocking-Issue | ||
if: | ||
- payloadType: Issues | ||
- labelAdded: | ||
label: License-Blocks-Install | ||
then: | ||
- addReply: | ||
reply: >- | ||
Hello @${issueAuthor}, | ||
This package appears to require user to accept a license agreement before installation. | ||
This issue is blocked until support for agreements is added to the community repository. | ||
* See microsoft/winget-pkgs/issues/131328 | ||
Template: msftbot/blockingIssue/licenseBlocksInstall | ||
- addLabel: | ||
label: Blocking-Issue | ||
# The policy service should trigger even when the label was added by the policy service | ||
triggerOnOwnActions: true | ||
onFailure: | ||
onSuccess: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
id: labelAdded.portableArchive | ||
name: GitOps.PullRequestIssueManagement | ||
description: Handlers when "portable-archive" label is added | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: >- | ||
When the label "portable-archive" is added to a pull request | ||
* Add the PR specific reply notifying the issue author of a blocking issue | ||
* Label the PR with Blocking-Issue | ||
* Label with Needs-Author-Feedback | ||
* Remove the Needs-Attention Label | ||
if: | ||
- payloadType: Pull_Request | ||
- labelAdded: | ||
label: portable-archive | ||
then: | ||
- addReply: | ||
reply: >- | ||
Hello @${issueAuthor}, | ||
This package appears to require support for archive extraction. | ||
This PR is blocked until support for additional archive formats is implemented in: | ||
* microsoft/winget-cli/issues/2899 | ||
Be sure to add your 👍 to the issue to help raise the priority and avoid posting "Me too!" messages to respect those who have subscribed to the issue. | ||
Template: msftbot/blockingIssue/additionalArchiveSupport | ||
- addLabel: | ||
label: Blocking-Issue | ||
- addLabel: | ||
label: Needs-Author-Feedback | ||
- removeLabel: | ||
label: Needs-Attention | ||
# The policy service should trigger even when the label was added by the policy service | ||
triggerOnOwnActions: true | ||
- description: >- | ||
When the label "portable-archive" is added to an issue | ||
* Add the issue specific reply notifying the issue author of a blocking issue | ||
* Label the issue with Blocking-Issue | ||
if: | ||
- payloadType: Issues | ||
- labelAdded: | ||
label: portable-archive | ||
then: | ||
- addReply: | ||
reply: >- | ||
Hello @${issueAuthor}, | ||
This package appears to require support for archive extraction. | ||
This PR is blocked until support for additional archive formats is implemented in: | ||
* microsoft/winget-cli/issues/2899 | ||
Be sure to add your 👍 to the issue to help raise the priority and avoid posting "Me too!" messages to respect those who have subscribed to the issue. | ||
Template: msftbot/blockingIssue/additionalArchiveSupport | ||
- addLabel: | ||
label: Blocking-Issue | ||
# The policy service should trigger even when the label was added by the policy service | ||
triggerOnOwnActions: true | ||
onFailure: | ||
onSuccess: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
fbdb262
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@check-spelling-bot Report
🔴 Please review
See the 📜action log for details.
Unrecognized words (9)
BDCE
DFAF
differring
Familyname
HKEY
MSIINSTALLPERUSER
schemae
Upgradecode
Workarounds
Previously acknowledged words that are now absent
admins craigloewen Daa Esco fabricbot Filezilla jedieaston Joakim Kad Karan Levvie mdanish Megamix msft quhxl redistribution russellbanks Tbot timezone Trenly :arrow_right:To accept ✔️ these unrecognized words as correct and remove the previously acknowledged and now absent words, run the following commands
... in a clone of the [email protected]:stephengillie/winget-pkgs.git repository
on the
winget-pkgs-AUTHORING-MANIFESTS-md
branch (ℹ️ how do I use this?):Pattern suggestions ✂️ (1)
You could add these patterns to .github/actions/spelling/patterns.txt:
Warnings (1)
See the 📜action log for details.
See ℹ️ Event descriptions for more information.
If the flagged items are 🤯 false positives
If items relate to a ...
binary file (or some other file you wouldn't want to check at all).
Please add a file path to the
excludes.txt
file matching the containing file.File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.
^
refers to the file's path from the root of the repository, so^README\.md$
would exclude README.md (on whichever branch you're using).well-formed pattern.
If you can write a pattern that would match it,
try adding it to the
patterns.txt
file.Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.
Note that patterns can't match multiline strings.