Skip to content

Commit 8f795c0

Browse files
committed
update docs, update nugets, remove unused code
1 parent a74b6e4 commit 8f795c0

File tree

8 files changed

+20
-76
lines changed

8 files changed

+20
-76
lines changed

GitHubIssueFormsParser/.dockerignore

Lines changed: 0 additions & 25 deletions
This file was deleted.

GitHubIssueFormsParser/Directory.Build.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.1.46">
15+
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.2.32">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>
19-
<PackageReference Include="Roslynator.Analyzers" Version="4.0.2">
19+
<PackageReference Include="Roslynator.Analyzers" Version="4.1.1">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
</PackageReference>
23-
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.0.2">
23+
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.1.1">
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
</PackageReference>
27-
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.0.2">
27+
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.1.1">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>
@@ -43,7 +43,7 @@
4343
<PackageReference Include="Shouldly" Version="4.0.3" />
4444
<PackageReference Include="xunit.analyzers" Version="0.10.0" />
4545
<PackageReference Include="NSubstitute.Analyzers.CSharp" Version="1.0.15" />
46-
<PackageReference Include="GitHubActionsTestLogger" Version="1.3.0" />
46+
<PackageReference Include="GitHubActionsTestLogger" Version="2.0.1" />
4747
<PackageReference Include="LiquidTestReports.Custom" Version="1.0.9" />
4848
</ItemGroup>
4949

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="CliFx" Version="2.2.2" />
10-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
9+
<PackageReference Include="CliFx" Version="2.2.6" />
10+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.15.1" />
1111
<PackageReference Include="SlugGenerator" Version="2.0.2" />
1212
<PackageReference Include="YamlDotNet" Version="11.2.1" />
1313
</ItemGroup>
1414

15-
<ItemGroup>
16-
<PackageReference Update="Roslynator.Analyzers" Version="4.1.0">
17-
<PrivateAssets>all</PrivateAssets>
18-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
19-
</PackageReference>
20-
<PackageReference Update="Roslynator.CodeAnalysis.Analyzers" Version="4.1.0">
21-
<PrivateAssets>all</PrivateAssets>
22-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
23-
</PackageReference>
24-
<PackageReference Update="Roslynator.Formatting.Analyzers" Version="4.1.0">
25-
<PrivateAssets>all</PrivateAssets>
26-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
27-
</PackageReference>
28-
</ItemGroup>
29-
3015
</Project>

GitHubIssueFormsParser/src/GitHubIssuesParserCli/Properties/launchSettings.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"profiles": {
33
"GitHubIssuesParserCli": {
44
"commandName": "Project"
5-
},
6-
"Docker": {
7-
"commandName": "Docker"
85
}
96
}
10-
}
7+
}

GitHubIssueFormsParser/tests/GitHubIssuesParserCli.Tests/GitHubIssuesParserCli.Tests.csproj

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
1111
<PackageReference Include="xunit" Version="2.4.1" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
@@ -47,19 +47,4 @@
4747
</None>
4848
</ItemGroup>
4949

50-
<ItemGroup>
51-
<PackageReference Update="Roslynator.Analyzers" Version="4.1.0">
52-
<PrivateAssets>all</PrivateAssets>
53-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
54-
</PackageReference>
55-
<PackageReference Update="Roslynator.CodeAnalysis.Analyzers" Version="4.1.0">
56-
<PrivateAssets>all</PrivateAssets>
57-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
58-
</PackageReference>
59-
<PackageReference Update="Roslynator.Formatting.Analyzers" Version="4.1.0">
60-
<PrivateAssets>all</PrivateAssets>
61-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
62-
</PackageReference>
63-
</ItemGroup>
64-
6550
</Project>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
USAGE
2-
dotnet testhost.dll [options]
3-
dotnet testhost.dll [command] [...]
2+
testhost [options]
3+
testhost [command] [...]
44

55
OPTIONS
66
-h|--help Shows help text.
@@ -9,4 +9,4 @@ OPTIONS
99
COMMANDS
1010
parse-issue-form
1111

12-
You can run `dotnet testhost.dll [command] --help` to show help on a specific command.
12+
You can run `testhost [command] --help` to show help on a specific command.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ A Docker container [GitHub action](https://docs.github.com/en/actions/learn-gith
3636
3737
### Action inputs
3838
39-
| Name | Description
40-
| --- | --- |
41-
| `template-filepath` | The filepath to the [issue form template](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms). |
42-
| `issue-form-body` | The body of the issue to parse. |
39+
| Name | Description | Required
40+
| --- | --- | --- |
41+
| `template-filepath` | The filepath to the [issue form template](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms). | yes |
42+
| `issue-form-body` | The body of the issue to parse. | yes |
4343

4444
### Action outputs
4545

docs/dev-notes/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ For more information about the GitHub workflows configured for this repo go [her
7171

7272
This action is published to the [GitHub marketplace](https://github.com/marketplace/actions/github-issue-forms-parser). See here for more information on [how to publish or remove an action from the marketplace](https://docs.github.com/en/actions/creating-actions/publishing-actions-in-github-marketplace).
7373

74+
**Currently there is no workflow setup to publish this action to the marketplace. The publishing act is a manual process following the instructions above.**
75+
7476
## Note about the Docker container action
7577

7678
This repo provides a [Docker container action](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action). If parsing the GitHub issue form fails then the action [will fail](https://docs.github.com/en/enterprise-cloud@latest/actions/creating-actions/setting-exit-codes-for-actions#setting-a-failure-exit-code-in-a-docker-container-action). See here for more information about the [syntax for a Docker container action](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-docker-container-actions).

0 commit comments

Comments
 (0)