{"id":15429533,"url":"https://github.com/havendv/workflows","last_synced_at":"2026-02-24T16:44:52.161Z","repository":{"id":45140564,"uuid":"418078053","full_name":"HavenDV/workflows","owner":"HavenDV","description":"Reusable workflows","archived":false,"fork":false,"pushed_at":"2024-11-13T13:44:22.000Z","size":237,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-16T04:08:39.807Z","etag":null,"topics":["auto-release","cd","ci","continious-delivery","continious-integration","conventional-commits","dotnet","github-actions","msbuild","nuget","publish","release-notes","release-notes-generator","reusable-workflows"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HavenDV.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-17T09:26:45.000Z","updated_at":"2024-11-13T13:44:26.000Z","dependencies_parsed_at":"2024-09-14T15:48:38.828Z","dependency_job_id":null,"html_url":"https://github.com/HavenDV/workflows","commit_stats":{"total_commits":152,"total_committers":2,"mean_commits":76.0,"dds":"0.48684210526315785","last_synced_commit":"d6167f2ef3a82c803757a785f92f5fface4b1394"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HavenDV%2Fworkflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HavenDV%2Fworkflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HavenDV%2Fworkflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HavenDV%2Fworkflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HavenDV","download_url":"https://codeload.github.com/HavenDV/workflows/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249743035,"owners_count":21319040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["auto-release","cd","ci","continious-delivery","continious-integration","conventional-commits","dotnet","github-actions","msbuild","nuget","publish","release-notes","release-notes-generator","reusable-workflows"],"created_at":"2024-10-01T18:11:24.421Z","updated_at":"2026-02-24T16:44:47.124Z","avatar_url":"https://github.com/HavenDV.png","language":null,"readme":"# Using\n```yaml\nname: Build, test and publish\non: [ push ]\n\njobs:\n  build-test-publish:\n    name: Build, test and publish\n    uses: HavenDV/workflows/.github/workflows/dotnet_build-test-publish.yml@main\n    secrets:\n      nuget-key: ${{ secrets.NUGET_KEY }}\n    with:\n      asset-path1: src/installers/UpworkPdfGenerator.Installers.Wpf.NetFramework/UpworkPdfGenerator.msi\n      asset-name1: UpworkPdfGenerator.msi\n```\n\n# Explanation\n## [Build, test and publish](.github/workflows/dotnet_build-test-publish.yml)\nThis workflow is for developing and releasing a NuGet package by a small number of people on the same branch.  \nIt is based on the [Conventional Commits specification](https://www.conventionalcommits.org/) and \nwill only release new releases if they contain fix/feat/perf commit types.  \nIt automatically generates a build number (BUILD_NUMBER environment variable).  \nIt also automatically generates Package Release Notes based on the latest commits (PACKAGE_RELEASE_NOTES environment variable).  \nRequires a nuget-key secret that will be able to load your NuGet packages.  \n\n### Inputs\n| name                                        | type    | default             |\n|---------------------------------------------|---------|---------------------|\n| os                                          | string  | 'ubuntu-latest'     |\n| dotnet-version                              | string  | '6.0.x'             |\n| additional-dotnet-version                   | string  | ''                  |\n| include-prerelease                          | boolean | true                |\n| workloads                                   | string  | ''                  |\n| windows-sdk-version                         | string  | ''                  |\n| windows-sdk-version2                        | string  | ''                  |\n| windows-sdk-version3                        | string  | ''                  |\n| windows-sdk-version4                        | string  | ''                  |\n| generate-build-number                       | boolean | true                |\n| fetch-depth                                 | number  | 0                  |\n| conventional-commits-publish-conditions     | boolean | true                |\n| project-path                                | string  | ''                  |\n| additional-project-path                     | string  | ''                  |\n| configuration                               | string  | 'Release'           |\n| use-msbuild                                 | boolean | false               |\n| vs-prerelease                               | boolean | true                |\n| run-tests                                   | boolean | true                |\n| asset-path1                                 | string  | ''                  |\n| asset-path2                                 | string  | ''                  |\n| asset-path3                                 | string  | ''                  |\n| asset-name1                                 | string  | ''                  |\n| asset-name2                                 | string  | ''                  |\n| asset-name3                                 | string  | ''                  |\n| asset-content-type1                         | string  | 'application/x-msi' |\n| asset-content-type2                         | string  | 'application/x-msi' |\n| asset-content-type3                         | string  | 'application/x-msi' |\n| deploy-web-assembly-path                    | string  | ''                  |\n| deploy-web-assembly-repo                    | string  | ''                  |\n   \n### Secrets\n| name                                        | type    | default             |\n|---------------------------------------------|---------|---------------------|\n| nuget-key                                   | string  | ''                  |\n| personal-token                              | string  | ''                  |\n\n# Contacts\n* [mail](mailto:havendv@gmail.com)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhavendv%2Fworkflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhavendv%2Fworkflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhavendv%2Fworkflows/lists"}