Skip to content

Commit

Permalink
Merge pull request #3 from Particular/GitHubSync-20240712-051631
Browse files Browse the repository at this point in the history
GitHubSync update - master
  • Loading branch information
WilliamBZA authored Jul 16, 2024
2 parents 7528c8a + b87f479 commit 0468892
Show file tree
Hide file tree
Showing 10 changed files with 573 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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)
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/improvement_request.yml
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)
31 changes: 31 additions & 0 deletions .github/dependabot.yml
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
13 changes: 13 additions & 0 deletions .github/workflows/stale.yml
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 }}
18 changes: 18 additions & 0 deletions nuget.config
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>
Loading

0 comments on commit 0468892

Please sign in to comment.