-
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 pull request #3 from Particular/GitHubSync-20240712-051631
GitHubSync update - master
- Loading branch information
Showing
10 changed files
with
573 additions
and
0 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,51 @@ | ||
name: Bug report | ||
description: File a bug report | ||
labels: ["Bug" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
For additional support options, or if this is related to a security vulnerability or sensitive information must be included in the bug report, visit [particular.net/support](https://particular.net/support). | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of the bug. | ||
value: | | ||
#### Description | ||
#### Expected behavior | ||
#### Actual behavior | ||
#### Versions | ||
Please list the version of the relevant packages or applications in which the bug exists. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Detailed instructions to reproduce the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional Information | ||
description: If there are any possible solutions, workarounds, or additional information please describe them here | ||
value: | | ||
#### Workarounds | ||
#### Possible solutions | ||
#### Additional information | ||
validations: | ||
required: false |
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 @@ | ||
name: Feature request | ||
|
||
description: Request a new feature. | ||
labels: ["Feature" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please check all open and closed issues to see if the feature has already been requested. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the feature. | ||
|
||
description: A clear and concise description of the feature. | ||
|
||
value: | | ||
#### Is your feature related to a problem? Please describe. | ||
#### Describe the requested feature | ||
#### Describe alternatives you've considered | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the request. | ||
|
||
placeholder: "Add screenshots or additional information." | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
For additional support options visit [particular.net/support](https://particular.net/support) |
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,33 @@ | ||
name: Improvement request | ||
description: Suggest an improvement to an existing code base. | ||
labels: ["Improvement" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please check all open and closed issues to see if improvement has already been suggested. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the suggested improvement | ||
description: A clear and concise description of what the improvement is. | ||
value: | | ||
#### Is your improvement related to a problem? Please describe. | ||
#### Describe the suggested solution | ||
#### Describe alternatives you've considered | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the suggestion here. | ||
placeholder: "Add screenshots or additional information." | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
For additional support options visit [particular.net/support](https://particular.net/support) |
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,31 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 1000 | ||
groups: | ||
AWSSDK: | ||
patterns: | ||
- "AWSSDK.*" | ||
NServiceBusCore: | ||
patterns: | ||
- "NServiceBus" | ||
- "NServiceBus.AcceptanceTesting" | ||
- "NServiceBus.AcceptanceTests.Sources" | ||
- "NServiceBus.PersistenceTests.Sources" | ||
- "NServiceBus.TransportTests.Sources" | ||
ignore: | ||
# Particular.Analyzers updates are distributed via RepoStandards | ||
- dependency-name: "Particular.Analyzers" | ||
# Changing these 3 dependencies affects the .NET SDK and Visual Studio versions we support | ||
# These types of updates should be more intentional than an automated update | ||
- dependency-name: "Microsoft.Build.Utilities.Core" | ||
- dependency-name: "Microsoft.CodeAnalysis.CSharp" | ||
- dependency-name: "Microsoft.CodeAnalysis.CSharp.Workspaces" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 1000 |
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 @@ | ||
name: StaleBot | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
jobs: | ||
stalebot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Mark stale PRs | ||
uses: Particular/stale-action@main | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="particular packages" value="https://f.feedz.io/particular-software/packages/nuget/index.json" /> | ||
</packageSources> | ||
<packageSourceMapping> | ||
<packageSource key="nuget.org"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
<packageSource key="particular packages"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
<packageSource key="local packages"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |
Oops, something went wrong.