Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .docfx/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"_enableSearch": true,
"_disableContribution": false,
"_gitContribute": {
"repo": "https://github.com/gimlichael/Cuemon",
"repo": "https://github.com/codebeltnet/cuemon",
"branch": "development"
},
"_gitUrlPattern": "github",
Expand Down
2 changes: 1 addition & 1 deletion .docfx/templates/cuemon/public/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export default {
iconLinks: [
{
icon: 'github',
href: 'https://github.com/gimlichael/Cuemon',
href: 'https://github.com/codebeltnet/cuemon',
title: 'GitHub'
}
]
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,24 +165,24 @@ jobs:
needs: [build, test_linux, test_windows, integration_test]
uses: codebeltnet/jobs-codecov/.github/workflows/default.yml@v1
with:
repository: gimlichael/Cuemon
repository: codebeltnet/cuemon
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

# codeql:
# name: call-codeql
# needs: [build, test_linux, test_windows, integration_test]
# uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
# with:
# timeout-minutes: 30
# permissions:
# security-events: write
codeql:
name: call-codeql
needs: [build, test_linux, test_windows, integration_test]
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
with:
timeout-minutes: 30
permissions:
security-events: write

deploy:
if: github.event_name != 'pull_request'
name: call-nuget
needs: [build, pack, test_linux, test_windows, integration_test, sonarcloud, codecov]
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v1
needs: [build, pack, test_linux, test_windows, integration_test, sonarcloud, codecov, codeql]
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
with:
version: ${{ needs.build.outputs.version }}
environment: Production
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://www.cuemon.net/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/gimlichael/Cuemon</RepositoryUrl>
<RepositoryUrl>https://github.com/codebeltnet/cuemon</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NeutralLanguage>en-US</NeutralLanguage>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand All @@ -43,7 +43,7 @@
</PropertyGroup>

<ItemGroup Condition="'$(NuGetPackageRoot)' != ''">
<SourceRoot Include="$(NuGetPackageRoot)" RepositoryUrl="https://github.com/gimlichael/Cuemon" />
<SourceRoot Include="$(NuGetPackageRoot)" RepositoryUrl="https://github.com/codebeltnet/cuemon" />
</ItemGroup>

<ItemGroup Condition="'$(IsTestProject)' == 'false'">
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ All CI and CD integrations have been migrated away from [Microsoft Azure DevOps]

All code quality analysis are done by [SonarCloud](https://sonarcloud.io/) and [CodeCov.io](https://codecov.io/).

![License](https://img.shields.io/github/license/gimlichael/cuemon) ![Build Status](https://github.com/gimlichael/Cuemon/actions/workflows/pipelines.yml/badge.svg?branch=main) [![codecov](https://codecov.io/gh/gimlichael/Cuemon/branch/development/graph/badge.svg)](https://codecov.io/gh/gimlichael/Cuemon) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=Cuemon&metric=coverage)](https://sonarcloud.io/dashboard?id=Cuemon) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](.github/CODE_OF_CONDUCT.md) [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/gimlichael/Cuemon/badge)](https://scorecard.dev/viewer/?uri=github.com/gimlichael/Cuemon)
![License](https://img.shields.io/github/license/codebeltnet/cuemon) ![Build Status](https://github.com/codebeltnet/cuemon/actions/workflows/pipelines.yml/badge.svg?branch=main) [![codecov](https://codecov.io/gh/codebeltnet/cuemon/branch/development/graph/badge.svg)](https://codecov.io/gh/codebeltnet/cuemon) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=Cuemon&metric=coverage)](https://sonarcloud.io/dashboard?id=Cuemon) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](.github/CODE_OF_CONDUCT.md) [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/codebeltnet/cuemon/badge)](https://scorecard.dev/viewer/?uri=github.com/codebeltnet/cuemon)

## Branching Strategy

Expand Down
Loading