You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Bugs are tracked as [GitHub issues](https://github.com/json-api-dotnet/JsonApiDo
22
22
Explain the problem and include additional details to help maintainers reproduce the problem:
23
23
24
24
-**Use a clear and descriptive title** for the issue to identify the problem.
25
-
-**Describe the exact steps which reproduce the problem** in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
25
+
-**Describe the exact steps which reproduce the problem** in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
26
26
-**Provide specific examples to demonstrate the steps.** Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use [Markdown code blocks](https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks).
27
27
-**Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior. Explain which behavior you expected to see instead and why.
28
28
-**If you're reporting a crash**, include the full exception stack trace.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/question.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ assignees: ''
8
8
---
9
9
10
10
<!--
11
-
Remember that no-one is getting paid to answer your question. You're basically asking other people to give up their time to help you out of the goodness of their heart – it's up to you to do all you can to make that as simple as possible, so read http://tinyurl.com/stack-checklist first.
11
+
Remember that no-one is getting paid to answer your question. You're basically asking other people to give up their time to help you out of the goodness of their heart – it's up to you to do all you can to make that as simple as possible, so read https://tinyurl.com/stack-checklist first.
if ($configuredVersionPrefix -ne $versionPrefix) {
79
76
Write-Error "Version prefix from git release tag '$versionPrefix' does not match version prefix '$configuredVersionPrefix' stored in Directory.Build.props."
Write-Error "One or more projects failed code inspection."
194
+
Write-Error 'One or more projects failed code inspection.'
205
195
}
206
196
}
207
197
@@ -220,7 +210,6 @@ jobs:
220
210
- name: Setup .NET
221
211
uses: actions/setup-dotnet@v4
222
212
with:
223
-
# Block buggy release from February 11, 2025
224
213
dotnet-version: |
225
214
8.0.*
226
215
9.0.*
@@ -229,13 +218,11 @@ jobs:
229
218
with:
230
219
fetch-depth: 2
231
220
- name: Restore tools
232
-
run: |
233
-
dotnet tool restore
221
+
run: dotnet tool restore
234
222
- name: Restore packages
235
-
run: |
236
-
dotnet restore
223
+
run: dotnet restore
237
224
- name: CleanupCode (on PR diff)
238
-
if: github.event_name == 'pull_request'
225
+
if: ${{ github.event_name == 'pull_request' }}
239
226
shell: pwsh
240
227
run: |
241
228
# Not using the environment variables for SHAs, because they may be outdated. This may happen on force-push after the build is queued, but before it starts.
@@ -246,10 +233,10 @@ jobs:
246
233
Write-Output "Running code cleanup on commit range $baseCommitHash..$headCommitHash in pull request."
0 commit comments