-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run all pre-commits on the the project
- Loading branch information
Roald Ruiter
committed
Jul 3, 2024
1 parent
1bdc063
commit a4c4b89
Showing
2,756 changed files
with
229,215 additions
and
139,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mode: chatops | ||
branchName: '${issue.number}-${issue.title}' | ||
openDraftPR: true | ||
branchName: "${issue.number}-${issue.title}" | ||
openDraftPR: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
on: | ||
issues: | ||
types: [assigned] | ||
issue_comment: | ||
types: [created] | ||
pull_request: | ||
types: [closed] | ||
issues: | ||
types: [assigned] | ||
issue_comment: | ||
types: [created] | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
create_issue_branch_job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Issue Branch | ||
uses: robvanderleek/create-issue-branch@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
create_issue_branch_job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Issue Branch | ||
uses: robvanderleek/create-issue-branch@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
name: dev | ||
|
||
on: | ||
on: | ||
push: | ||
branches : | ||
branches: | ||
- dev | ||
pull_request: | ||
pull_request: | ||
paths: | ||
- 'src/**' | ||
- 'pipelines/**' | ||
- '.github/**' | ||
- "src/**" | ||
- "pipelines/**" | ||
- ".github/**" | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: self-hosted | ||
timeout-minutes: 180 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with : | ||
path : '.' | ||
with: | ||
path: "." | ||
fetch-depth: 0 | ||
- name: Run Psake | ||
env: | ||
_PK_PHOENY_ : ${{ secrets._PK_PHOENY_ }} | ||
_TK_PHOENY_ : ${{ secrets._TK_PHOENY_ }} | ||
_TW_PHOENY : ${{ secrets._TW_PHOENY }} | ||
_TW_TOKEN_ : ${{ secrets._TW_TOKEN_ }} | ||
_TW_USER_ : ${{ secrets._TW_USER_ }} | ||
_PK_PHOENY_: ${{ secrets._PK_PHOENY_ }} | ||
_TK_PHOENY_: ${{ secrets._TK_PHOENY_ }} | ||
_TW_PHOENY: ${{ secrets._TW_PHOENY }} | ||
_TW_TOKEN_: ${{ secrets._TW_TOKEN_ }} | ||
_TW_USER_: ${{ secrets._TW_USER_ }} | ||
run: > | ||
.\pipelines\runbuild.ps1 -properties | ||
.\pipelines\runbuild.ps1 -properties | ||
@{ | ||
"buildConfig" = "Release"; | ||
"updateAssemblyInfo" = $true; | ||
"testingStrength" = 1; | ||
"isTestingEnabled" = $true; | ||
"packNugets" = $false; | ||
} | ||
- name : Create Tag | ||
if : env.BuildNumber && success() && github.event_name != 'pull_request' | ||
run : | | ||
- name: Create Tag | ||
if: env.BuildNumber && success() && github.event_name != 'pull_request' | ||
run: | | ||
git config --global user.email "gh-action@tcopengroup.com" | ||
git config --global user.name "gh-action" | ||
$tag = "GH-${{github.run_id}}-${{env.BuildNumber}}" | ||
git tag $tag | ||
git tag $tag | ||
git push --tags | ||
continue-on-error: true | ||
- name: Test Report | ||
uses: dorny/test-reporter@v1 | ||
if: success() || failure() | ||
with: | ||
name: Test report | ||
path: '**/TestResults/*.xml' | ||
path: "**/TestResults/*.xml" | ||
reporter: dotnet-trx | ||
- name: Upload PLC libraries | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: plcLibs | ||
name: plcLibs | ||
path: ${{ github.workspace }}\plcLibs\*.library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,67 @@ | ||
name: nightly | ||
|
||
on: | ||
workflow_dispatch : | ||
branches : | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- dev | ||
schedule: | ||
- cron: '0 0 * * *' | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: self-hosted | ||
timeout-minutes: 180 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with : | ||
path : '.' | ||
with: | ||
path: "." | ||
fetch-depth: 0 | ||
- name: Run Psake | ||
env: | ||
_PK_PHOENY_ : ${{ secrets._PK_PHOENY_ }} | ||
_TK_PHOENY_ : ${{ secrets._TK_PHOENY_ }} | ||
_TW_PHOENY : ${{ secrets._TW_PHOENY }} | ||
_TW_TOKEN_ : ${{ secrets._TW_TOKEN_ }} | ||
_TW_USER_ : ${{ secrets._TW_USER_ }} | ||
_PK_PHOENY_: ${{ secrets._PK_PHOENY_ }} | ||
_TK_PHOENY_: ${{ secrets._TK_PHOENY_ }} | ||
_TW_PHOENY: ${{ secrets._TW_PHOENY }} | ||
_TW_TOKEN_: ${{ secrets._TW_TOKEN_ }} | ||
_TW_USER_: ${{ secrets._TW_USER_ }} | ||
run: > | ||
.\pipelines\runbuild.ps1 -properties | ||
.\pipelines\runbuild.ps1 -properties | ||
@{ | ||
"buildConfig" = "Release"; | ||
"updateAssemblyInfo" = $true; | ||
"isTestingEnabled" = $true; | ||
"testingStrength" = 10; | ||
"packNugets" = $true; | ||
} | ||
- name : Create Tag | ||
if : env.BuildNumber && success() && github.event_name != 'pull_request' | ||
run : | | ||
- name: Create Tag | ||
if: env.BuildNumber && success() && github.event_name != 'pull_request' | ||
run: | | ||
git config --global user.email "gh-action@tcopengroup.com" | ||
git config --global user.name "gh-action" | ||
$tag = "GH-${{github.run_id}}-${{env.BuildNumber}}" | ||
git tag $tag | ||
git tag $tag | ||
git push --tags | ||
continue-on-error: true | ||
- name: Test Report | ||
uses: dorny/test-reporter@v1 | ||
if: success() || failure() | ||
with: | ||
name: Test report | ||
path: '**/TestResults/*.xml' | ||
reporter: dotnet-trx | ||
path: "**/TestResults/*.xml" | ||
reporter: dotnet-trx | ||
- name: Upload NuGets artifacts | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: nugets | ||
path: ${{ github.workspace }}/nugets/*.nupkg | ||
- name: Upload PLC libraries | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: plcLibs | ||
path: ${{ github.workspace }}\plcLibs\*.library | ||
path: ${{ github.workspace }}\plcLibs\*.library | ||
- name: Cake-Draft-Release-OrgsNugets | ||
env: | ||
TC_OPEN_GROUP_USER_PAT : ${{ secrets.TC_OPEN_GROUP_USER_PAT }} | ||
TC_OPEN_GROUP_USER_PAT: ${{ secrets.TC_OPEN_GROUP_USER_PAT }} | ||
run: > | ||
.\pipelines\release-to-gh.ps1 | ||
.\pipelines\release-to-gh.ps1 |
Oops, something went wrong.