{"id":20440334,"url":"https://github.com/netchris/workflows","last_synced_at":"2026-03-19T15:50:38.605Z","repository":{"id":218575476,"uuid":"746794037","full_name":"NetChris/workflows","owner":"NetChris","description":"Reusable GitHub workflows for NetChris","archived":false,"fork":false,"pushed_at":"2026-03-01T01:26:07.000Z","size":31,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-01T02:26:03.488Z","etag":null,"topics":["github-actions-workflows","netchris-ci-managed"],"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/NetChris.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-22T17:28:28.000Z","updated_at":"2025-09-13T22:50:28.000Z","dependencies_parsed_at":"2024-05-19T01:24:05.120Z","dependency_job_id":"1aed3f00-826a-4683-b2e2-693fa163b51b","html_url":"https://github.com/NetChris/workflows","commit_stats":null,"previous_names":["netchris/workflows"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/NetChris/workflows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NetChris%2Fworkflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NetChris%2Fworkflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NetChris%2Fworkflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NetChris%2Fworkflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NetChris","download_url":"https://codeload.github.com/NetChris/workflows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NetChris%2Fworkflows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30284776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["github-actions-workflows","netchris-ci-managed"],"created_at":"2024-11-15T09:23:38.885Z","updated_at":"2026-03-19T15:50:38.599Z","avatar_url":"https://github.com/NetChris.png","language":null,"readme":"# Reusable GitHub workflows for NetChris\n\n## `dotnet-build-test-pack-push-default.yml`\n\nThis is a simple build, test, pack and NuGet push for .NET projects.  \"Default\" in that it assumes the `dotnet` SDK commands `build`, `test`, `pack` and `nuget push` can be run and all required information is defaulted (e.g. solutions, projects, tests).  It also assumes that all NuGet packages that are packed with the `dotnet pack` SDK command will be pushed to the NuGet registry.\n\n- If the `nuget_source` input isn't supplied, the organizational [GitHub NuGet registry](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry) (`https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json`) is assumed.\n\n## `push-dotnet-build-test-pack-push-default.yml`\n\nThis workflow leverages `dotnet-build-test-pack-push-default.yml` and allows a simple configuration for push actions, ignoring pushed tags, with packages being pushed to the GitHub NuGet registry:\n\n``` yaml\nname: Push\n\non:\n  push:\n    branches:    \n      - '**'\n    tags-ignore:\n      - '**'\n\njobs:\n  push:\n    permissions:\n      checks: write\n      contents: read\n      packages: write\n    uses: NetChris/workflows/.github/workflows/push-dotnet-build-test-pack-push-default.yml@SHA\n```\n\nNote the `permissions` requirement.\n\n### .NET SDK version\n\nTo upgrade the .NET SDK version to use for `dotnet` commands, update the following bit in each file where `dotnet` is called:\n\n``` yml\n# ...\n- name: Setup dotnet\n  uses: actions/setup-dotnet@v4\n  with:\n    dotnet-version: '9.x'\n# ...\n```\n\n## `pre-release-nuget-org.yml`\n\nThis workflow leverages `dotnet-build-test-pack-push-default.yml` and allows a simple configuration for **pre-release** actions, with packages being pushed to NuGet.org:\n\n``` yaml\n# Put this in a \"publish-nuget-org-pre-release.yml\" file\nname: Pre-Release - NuGet.org\n\non:\n  release:\n    types: [prereleased]\n\njobs:\n  push:\n    permissions:\n      contents: read\n      packages: write\n    uses: NetChris/workflows/.github/workflows/pre-release-nuget-org.yml@SHA\n    secrets: inherit\n```\n\n- Note the `permissions` requirement\n- Note the `secrets: inherit` requirement\n- Replace `SHA` with the appropriate SHA version of this repository\n- A similar workflow exists, `pre-release-nuget-github.yml`, for the GitHub NuGet registry\n\n## `release-nuget-org.yml`\n\nThis workflow leverages `dotnet-build-test-pack-push-default.yml` and allows a simple configuration for **release** actions, with packages being pushed to NuGet.org:\n\n``` yaml\n# Put this in a \"publish-nuget-org-release.yml\" file\nname: Release - NuGet.org\n\non:\n  release:\n    types: [released]\n\njobs:\n  push:\n    permissions:\n      contents: read\n      packages: write\n    uses: NetChris/workflows/.github/workflows/release-nuget-org.yml@SHA\n    secrets: inherit\n```\n\n- Note the `permissions` requirement\n- Note the `secrets: inherit` requirement\n- Replace `SHA` with the appropriate SHA version of this repository\n- A similar workflow exists, `release-nuget-github.yml`, for the GitHub NuGet registry\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetchris%2Fworkflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetchris%2Fworkflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetchris%2Fworkflows/lists"}