diff --git a/.github/workflows/add-new-item-to-project.yml b/.github/workflows/add-new-item-to-project.yml index a5b80d10..d066c156 100644 --- a/.github/workflows/add-new-item-to-project.yml +++ b/.github/workflows/add-new-item-to-project.yml @@ -36,7 +36,7 @@ jobs: add_new_item_to_project: name: Add New Issue needs: item_number - uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v13.6.2 with: org-name: "${{ vars.ORGANIZATION_NAME }}" org-project-name: "${{ vars.ORG_PROJECT_NAME }}" diff --git a/.github/workflows/build-csharp-project.yml b/.github/workflows/build-csharp-project.yml index 7e86a1ba..f99f0964 100644 --- a/.github/workflows/build-csharp-project.yml +++ b/.github/workflows/build-csharp-project.yml @@ -90,7 +90,7 @@ jobs: resolve_proj_file_path: name: Resolving ${{ inputs.project-name }} Project File Path needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v13.6.2 with: project-name: ${{ inputs.project-name }} base-path: ${{ inputs.base-path }} diff --git a/.github/workflows/dotnet-action-release.yml b/.github/workflows/dotnet-action-release.yml index eb3461fb..93d3d57e 100644 --- a/.github/workflows/dotnet-action-release.yml +++ b/.github/workflows/dotnet-action-release.yml @@ -157,7 +157,7 @@ jobs: validate_version: name: Validate Version needs: [print_validate_workflow, validate_branch] - uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" release-type: "${{ inputs.release-type }}" @@ -168,7 +168,7 @@ jobs: validate_tag: name: Validate Tag needs: validate_version - uses: KinsonDigital/Infrastructure/.github/workflows/validate-tag.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-tag.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" release-type: "${{ inputs.release-type }}" @@ -180,7 +180,7 @@ jobs: validate_sdk_setup: name: Validate SDK Setup needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-setup.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-setup.yml@v13.6.2 with: repo-name: "${{ inputs.project-name }}" secrets: @@ -216,7 +216,7 @@ jobs: validate_github_release: name: GitHub Release Does Not Exist needs: validate_version - uses: KinsonDigital/Infrastructure/.github/workflows/validate-github-release.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-github-release.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" version: "${{ needs.validate_version.outputs.version }}" @@ -227,7 +227,7 @@ jobs: build_project: name: Build Main Project (${{ inputs.project-name }}) needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" runs-on: "${{ inputs.runs-on }}" @@ -240,7 +240,7 @@ jobs: run_tests: name: Run Tests needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}Tests" runs-on: "${{ inputs.runs-on }}" diff --git a/.github/workflows/dotnet-lib-release.yml b/.github/workflows/dotnet-lib-release.yml index 8b6de17c..9a0d0a15 100644 --- a/.github/workflows/dotnet-lib-release.yml +++ b/.github/workflows/dotnet-lib-release.yml @@ -182,7 +182,7 @@ jobs: validate_version: name: Validate Version - uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" release-type: "${{ inputs.release-type }}" @@ -193,7 +193,7 @@ jobs: validate_tag: name: Validate Tag needs: validate_version - uses: KinsonDigital/Infrastructure/.github/workflows/validate-tag.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-tag.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" release-type: "${{ inputs.release-type }}" @@ -205,7 +205,7 @@ jobs: validate_sdk_setup: name: Validate SDK Setup needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-setup.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-setup.yml@v13.6.2 with: repo-name: "${{ inputs.project-name }}" secrets: @@ -215,7 +215,7 @@ jobs: nuget_pkg_does_not_exist: name: Validate NuGet Package Does Not Exist needs: validate_version - uses: KinsonDigital/Infrastructure/.github/workflows/nuget-package-does-not-exist.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/nuget-package-does-not-exist.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" version: "${{ needs.validate_version.outputs.version }}" @@ -224,7 +224,7 @@ jobs: validate_milestone_status: name: Validate Milestone Status needs: validate_version - uses: KinsonDigital/Infrastructure/.github/workflows/validate-milestone-status.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-milestone-status.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" version: "${{ needs.validate_version.outputs.version }}" @@ -235,7 +235,7 @@ jobs: validate_github_release: name: GitHub Release Does Not Exist needs: [validate_version] - uses: KinsonDigital/Infrastructure/.github/workflows/validate-github-release.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/validate-github-release.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" version: "${{ needs.validate_version.outputs.version }}" @@ -246,7 +246,7 @@ jobs: build_project: name: Build Main Project needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}" runs-on: "${{ inputs.runs-on }}" @@ -259,7 +259,7 @@ jobs: run_tests: name: Run Tests needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.2 with: project-name: "${{ inputs.project-name }}Tests" runs-on: "${{ inputs.runs-on }}" diff --git a/.github/workflows/internal-prepare-release.yml b/.github/workflows/internal-prepare-release.yml index 90913c92..f65bfbb8 100644 --- a/.github/workflows/internal-prepare-release.yml +++ b/.github/workflows/internal-prepare-release.yml @@ -73,7 +73,7 @@ jobs: prepare_release: name: Prepare ${{ inputs.release-type }} Release Of ${{ vars.PROJECT_NAME }} needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/prepare-release.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/prepare-release.yml@v13.6.2 with: project-name: "${{ vars.PROJECT_NAME }}" release-type: "${{ inputs.release-type }}" diff --git a/.github/workflows/run-csharp-tests.yml b/.github/workflows/run-csharp-tests.yml index b8ccfedd..43e85afb 100644 --- a/.github/workflows/run-csharp-tests.yml +++ b/.github/workflows/run-csharp-tests.yml @@ -92,7 +92,7 @@ jobs: resolve_proj_file_path: name: Resolving ${{ inputs.project-name }} Project File Path needs: print_validate_workflow - uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v13.6.2 with: project-name: ${{ inputs.project-name }} base-path: ${{ inputs.base-path }} diff --git a/.github/workflows/sync-pr-to-issue.yml b/.github/workflows/sync-pr-to-issue.yml index 261914da..0e395498 100644 --- a/.github/workflows/sync-pr-to-issue.yml +++ b/.github/workflows/sync-pr-to-issue.yml @@ -20,7 +20,7 @@ jobs: github.event_name == 'pull_request_target' && !startsWith(github.head_ref, 'renovate/') && github.head_ref != 'prev-release' && github.head_ref != 'prod-release' - uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.2 with: issue-or-pr-number: ${{ github.event.pull_request.number }} sync-type: initial @@ -37,7 +37,7 @@ jobs: github.head_ref != 'prev-release' && github.head_ref != 'prod-release' && github.event.issue.pull_request && github.event.issue.pull_request.url != null && contains(github.event.comment.body, '[run-sync]') - uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.1 + uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.2 with: issue-or-pr-number: ${{ github.event.issue.number }} sync-type: manual diff --git a/.vscode/launch.json b/.vscode/launch.json index 11d1098f..ec080433 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -141,7 +141,15 @@ "--inspect-wait", "--allow-all" ], - "args": ["Infrastructure", "24", "master", "master"], + "args": [ + "KinsonDigital", + "Infrastructure", + "24", + "master", + "master", + "🚀Preview Release", + "${env:CICD_TOKEN}", + ], "attachSimplePort": 9229, "console": "integratedTerminal", "windows": { @@ -176,6 +184,31 @@ "linux": { "runtimeExecutable": "${userHome}/.deno/bin/deno" } + }, + { // MILESTONE ITEMS ALL CLOSED + "name": "Milestone Items All Closed", + "request": "launch", + "type": "node", + "program": "${workspaceFolder}/cicd/scripts/milestone-items-all-closed.ts", + "cwd": "${workspaceFolder}/cicd", + "runtimeArgs": [ + "run", + "--inspect-wait", + "--allow-all" + ], + "args": [ + "KinsonDigital", + "Infrastructure", + "v13.6.1", + "${env:CICD_TOKEN}", + ], + "attachSimplePort": 9229, + "windows": { + "runtimeExecutable": "${userHome}\\.deno\\bin\\deno.exe" + }, + "linux": { + "runtimeExecutable": "${userHome}/.deno/bin/deno" + } }, { // NUGET PACKAGE EXISTS "name": "NuGet Package Exists", diff --git a/ReleaseNotes/ProductionReleases/Release-Notes-v13.6.2.md b/ReleaseNotes/ProductionReleases/Release-Notes-v13.6.2.md new file mode 100644 index 00000000..09dece40 --- /dev/null +++ b/ReleaseNotes/ProductionReleases/Release-Notes-v13.6.2.md @@ -0,0 +1,9 @@ +