diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 598747ee..4c7dfa80 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -11,7 +11,7 @@ We would like to start with saying thank you for wanting to contribute to COMET 1. [Fork](http://help.github.com/forking/) on GitHub 1. Clone your fork locally -1. Configure the upstream repo (`git remote add upstream git://github.com/RHEAGROUP/COMET-WebServices-Community-Edition`) +1. Configure the upstream repo (`git remote add upstream git://github.com/STARIONGROUP/COMET-WebServices-Community-Edition`) 1. Checkout development 1. Create a local branch (`git checkout -b myBranch`) from development 1. Work on your feature @@ -46,7 +46,7 @@ When you're ready to go you should confirm that you are up to date and rebased w 1. Send a descriptive [Pull Request](https://help.github.com/articles/creating-a-pull-request/) on GitHub - making sure you have selected the correct branch in the GitHub UI! 1. Wait for @samatrhea to merge your changes in. -And remember; **A pull-request with tests is a pull-request that's likely to be pulled in.** :grin: Bonus points if you document your feature in our [wiki](https://github.com/RHEAGROUP/COMET-WebServices-Community-Edition/wiki) once it has been pulled in +And remember; **A pull-request with tests is a pull-request that's likely to be pulled in.** :grin: Bonus points if you document your feature in our [wiki](https://github.com/STARIONGROUP/COMET-WebServices-Community-Edition/wiki) once it has been pulled in ## Style Guidelines diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 49199811..828a77d2 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -2,7 +2,7 @@ - [ ] I have written a descriptive issue title - [ ] I have verified that I am running the latest version of the COMET Web Services -- [ ] I have searched [open](https://github.com/RHEAGROUP/COMET-WebServices-Community-Edition/issues) and [closed](https://github.com/RHEAGROUP/COMET-WebServices-Community-Edition/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported +- [ ] I have searched [open](https://github.com/STARIONGROUP/COMET-WebServices-Community-Edition/issues) and [closed](https://github.com/STARIONGROUP/COMET-WebServices-Community-Edition/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported ### Description diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 4b4a4efa..c74fdba7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,8 +1,8 @@ ### Prerequisites - [ ] I have written a descriptive pull-request title -- [ ] I have verified that there are no overlapping [pull-requests](https://github.com/RHEAGROUP/COMET-WebServices-Community-Edition/pulls) open -- [ ] I have verified that I am following the COMET-SDK [code style guidelines](https://raw.githubusercontent.com/RHEAGROUP/COMET-WebServices-Community-Edition/master/.github/CONTRIBUTING.md) +- [ ] I have verified that there are no overlapping [pull-requests](https://github.com/STARIONGROUP/COMET-WebServices-Community-Edition/pulls) open +- [ ] I have verified that I am following the COMET-SDK [code style guidelines](https://raw.githubusercontent.com/STARIONGROUP/COMET-WebServices-Community-Edition/master/.github/CONTRIBUTING.md) - [ ] I have provided test coverage for my change (where applicable) ### Description diff --git a/.github/workflows/CodeQuality.yml b/.github/workflows/CodeQuality.yml index 1966748a..ca04573a 100644 --- a/.github/workflows/CodeQuality.yml +++ b/.github/workflows/CodeQuality.yml @@ -26,8 +26,8 @@ jobs: with: dotnet-version: '8.0.x' - - name: add RHEA GitHub nuget feed - run: dotnet nuget add source https://nuget.pkg.github.com/RHEAGROUP/index.json -n GHRHEA -u gh -p ${{ secrets.GH_PR_TOKEN }} --store-password-in-clear-text + - name: add Starion GitHub nuget feed + run: dotnet nuget add source https://nuget.pkg.github.com/STARIONGROUP/index.json -n GHRHEA -u gh -p ${{ secrets.GH_PR_TOKEN }} --store-password-in-clear-text - name: Restore dependencies run: dotnet restore COMET-WebServices.sln @@ -38,7 +38,7 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | dotnet tool install --global dotnet-sonarscanner - dotnet sonarscanner begin /k:"RHEAGROUP_CDP4-COMET-WebServices-Community-Edition" /o:"rheagroup" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="./CoverageResults/coverage.opencover.xml" + dotnet sonarscanner begin /k:"STARIONGROUP_CDP4-COMET-WebServices-Community-Edition" /o:"stariongroup" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="./CoverageResults/coverage.opencover.xml" - name: Build run: dotnet build COMET-WebServices.sln --no-restore /p:ContinuousIntegrationBuild=true diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index e435bd11..7e496276 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,8 +39,8 @@ jobs: with: languages: ${{ matrix.language }} - - name: add RHEA GitHub nuget feed - run: dotnet nuget add source https://nuget.pkg.github.com/RHEAGROUP/index.json -n GHRHEA -u gh -p ${{ secrets.GH_PR_TOKEN }} --store-password-in-clear-text + - name: add Starion GitHub nuget feed + run: dotnet nuget add source https://nuget.pkg.github.com/STARIONGROUP/index.json -n GHRHEA -u gh -p ${{ secrets.GH_PR_TOKEN }} --store-password-in-clear-text - name: Install dependencies run: dotnet restore COMET-WebServices.sln