-
-
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.
# devlooped/oss - Don't fail sponsors tagging, since it's optional devlooped/oss@8990ebb - Honor the PackReadme=false property devlooped/oss@1bf1eac - NoTargets/Traversal SDKs now support central package versions too devlooped/oss@afca922 - Enable floating versions for central packages by default devlooped/oss@b1d14c6 - Add static usings to allow unprefixed ThrowXxxx devlooped/oss@6dfe21f - Append missing trailing path to directory for icon/readme devlooped/oss@5cec43d - Update dotnet-file.yml with fix to create pull request action devlooped/oss@11a331d - Update dependabot.yml with some default groupings devlooped/oss@cba10bb - Add System.IdentityModel group devlooped/oss@e7d18ae - Add MS.IdentityModel to identity group devlooped/oss@14d1868 - Exclude System.IdentityModel from System group devlooped/oss@35ca3f3 - Update nuget.config to new domain devlooped/oss@0d911c2 - Fix dependabot group for tests devlooped/oss@49661db - Make sure build runs before pack devlooped/oss@ede013a - Switch to PackOnBuild=true and remove pack step devlooped/oss@6e7a3ab - Upload binlog artifact on debug runs devlooped/oss@a67ae78 - Set env:gh_token if present as secret devlooped/oss@97ebd18 - Bump create-pr dependency to avoid error with existing PRs devlooped/oss@11a8757 - Add .sass-cache to ignores devlooped/oss@d65f9c7 - Move .sass-cache down alongside other jekyll folders devlooped/oss@551d4e0 - Ignore azure functions local settings devlooped/oss@4bd7025 - Update .gitignore with BenchmarkDotNet artifacts default path devlooped/oss@e20e906 - Remove whitespace and add results to ignore devlooped/oss@ef852e7 - Only ignore App folder directly under the root devlooped/oss@02811fa # devlooped/.github - Rename community files devlooped/.github@80e81d2 - Update sponsorlink.jwt with new sponsors audience URL devlooped/.github@f8b7f50 - Fix typo devlooped/.github@e17634b - Fix missing bracket in link devlooped/.github@4d38bd1
- Loading branch information
1 parent
0580791
commit 16bca58
Showing
16 changed files
with
297 additions
and
57 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 @@ | ||
github: devlooped |
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,48 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us fix a problem. | ||
title: '' | ||
labels: 'bug' | ||
assignees: '' | ||
--- | ||
|
||
## Describe the Bug | ||
|
||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
## Steps to Reproduce | ||
|
||
<!-- Tell us how to reproduce the issue. Ideally provide a failing unit test. --> | ||
|
||
```c# | ||
public class ReproTest | ||
{ | ||
[Fact] | ||
public void Repro() | ||
{ | ||
// arrange | ||
// act | ||
// assert | ||
} | ||
} | ||
``` | ||
|
||
## Expected Behavior | ||
|
||
<!-- Describe what you expected to happen. --> | ||
|
||
## Exception with Stack Trace | ||
|
||
<!-- If you see an exception, put the WHOLE THING here. --> | ||
|
||
```text | ||
Put the exception with stack trace here. | ||
``` | ||
|
||
## Version Info | ||
|
||
<!-- Main project version and other relevant dependencies you are using. --> | ||
|
||
## Additional Info | ||
|
||
<!-- Add any other context about the problem here. --> |
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,24 @@ | ||
name: sponsor 💜 | ||
on: | ||
issues: | ||
types: [opened, edited, reopened] | ||
pull_request: | ||
types: [opened, edited, synchronize, reopened] | ||
|
||
jobs: | ||
sponsor: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
env: | ||
token: ${{ secrets.GH_TOKEN }} | ||
if: ${{ !endsWith(github.event.sender.login, '[bot]') && !endsWith(github.event.sender.login, 'bot') }} | ||
steps: | ||
- name: 🤘 checkout | ||
if: env.token != '' | ||
uses: actions/checkout@v2 | ||
|
||
- name: 💜 sponsor | ||
if: env.token != '' | ||
uses: devlooped/actions-sponsor@main | ||
with: | ||
token: ${{ env.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
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.