-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'draft-v8' into unmanaged-constructed-types
- Loading branch information
Showing
139 changed files
with
6,356 additions
and
3,910 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Learn feedback control. | ||
description: | | ||
⛔ This template is hooked into the feedback control on the bottom of every page on the learn.microsoft.com site. It automatically fills in several fields for you. Don't use for other purposes. ⛔ | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Issue information" | ||
- type: markdown | ||
attributes: | ||
value: Select the issue type, and describe the issue in the text box below. Add as much detail as needed to help us resolve the issue. Make sure to include the relevant section number. The committee is working on C# 8 currently. Don't write issues about features added after that version. | ||
- type: dropdown | ||
id: issue-type | ||
attributes: | ||
label: Type of issue | ||
options: | ||
- Typo | ||
- Spec incorrect | ||
- Spec incomplete | ||
- xref missing | ||
- Other (describe below) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feedback | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
- type: markdown | ||
attributes: | ||
value: "## 🚧 Document information 🚧" | ||
- type: markdown | ||
attributes: | ||
value: "*Don't modify the following fields*. They are automatically filled in for you. Doing so will disconnect your issue from the affected article. *Don't edit them*." | ||
- type: input | ||
id: pageUrl | ||
validations: | ||
required: true | ||
attributes: | ||
label: Page URL | ||
- type: input | ||
id: contentSourceUrl | ||
validations: | ||
required: true | ||
attributes: | ||
label: Content source URL |
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,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "nuget" | ||
directory: "/tools" #tools.sln | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
open-pull-requests-limit: 5 | ||
groups: | ||
# Group .NET updates together for solutions. | ||
dotnet: | ||
patterns: | ||
- "*" # Prefer a single PR per solution update. |
Binary file renamed
BIN
+247 KB
...EcmaTC49.BuildGrammar.1.0.0-alpha.2.nupkg → .../EcmaTC49.BuildGrammar.2.0.0-beta.3.nupkg
Binary file not shown.
Binary file not shown.
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,38 @@ | ||
# This GitHub Action workflow is triggered on label changes for pull requests. | ||
# When a pull request is labeled with "DO NOT MERGE", the workflow fails, thus | ||
# preventing the pull request from being merged. Otherwise, the workflow will | ||
# succeed, allowing the pull request to be merged. | ||
|
||
name: "Check labels that prevent merge" | ||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [labeled, unlabeled] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
labels-preventing-merge-check: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
label: | ||
# Labels that prevent merging | ||
- 'do not merge' | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | ||
with: | ||
egress-policy: audit | ||
|
||
- name: 'Check "${{ matrix.label }}" label' | ||
run: | | ||
echo "::notice::Merging permission is diabled for PRs when the '${{ matrix.label }}' label is applied." | ||
if [ "${{ contains(github.event.pull_request.labels.*.name, matrix.label) }}" = "true" ]; then | ||
echo "::error::Pull request is labeled as '${{ matrix.label }}'. Please remove the label before merging." | ||
exit 1 | ||
else | ||
exit 0 | ||
fi |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.