dotnet/.NET version sweeper
A Github action that scans .NET projects, and creates issues that report versions that are not within long term support.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| owner | The owner of the repo. Assign from github.repository_owner. Example, "dotnet". | yes | — |
| name | The repository name. Example, "samples". | yes | — |
| branch | The branch name. Assign from github.ref. Example, "main". | yes | — |
| dir | The root directory | no | /github/workspace |
| pattern | The search pattern, defaults to "*.csproj;*.fsproj;*.vbproj;*.xproj;project.json". Valid delimiters for lists, ',',';', or '|'. Example, "*.csproj,*.fsproj". | no | *.csproj;*.fsproj;*.vbproj;*.xproj;project.json |
| sdkCompliance | Whether or not to report projects that are not using the new SDK-style project format. | no | false |
Outputs
| name | description |
|---|---|
| has-remaining-work | A boolean value indicating whether more work remains, i.e. upgrade-projects contains values. |
| upgrade-projects | An array of projects that need to be upgraded. |