Skip to content

Commit

Permalink
🚧Fix arg processing bug (#157)
Browse files Browse the repository at this point in the history
* Start work for issue #156

* ide: alphabatize launch configs

* fix: fix bug with mutating incoming args for transpile readme process

* ci: update reusable workflow references
  • Loading branch information
CalvinWilkinson committed Aug 24, 2023
1 parent 24203b6 commit 0568094
Show file tree
Hide file tree
Showing 8 changed files with 151 additions and 156 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-new-item-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
add_new_item_to_project:
name: Add New Issue
needs: item_number
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
org-name: "${{ vars.ORGANIZATION_NAME }}"
org-project-name: "${{ vars.ORG_PROJECT_NAME }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-csharp-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
resolve_proj_file_path:
name: Resolving ${{ inputs.project-name }} Project File Path
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: ${{ inputs.project-name }}
base-path: ${{ inputs.base-path }}
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/docusaurus-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@ on:
type: string


permissions:
contents: write
pages: write
id-token: write


# Allow one concurrent deployment
concurrency:
group: "pages"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dotnet-action-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
validate_version:
name: Validate Version
needs: [print_validate_workflow, validate_branch]
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand All @@ -168,7 +168,7 @@ jobs:
validate_tag:
name: Validate Tag
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
validate_github_release:
name: GitHub Release Does Not Exist
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
version: "${{ needs.validate_version.outputs.version }}"
Expand All @@ -218,7 +218,7 @@ jobs:
build_project:
name: Build Main Project (${{ inputs.project-name }})
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
runs-on: "${{ inputs.runs-on }}"
Expand All @@ -229,7 +229,7 @@ jobs:
run_tests:
name: Run Tests
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}Tests"
runs-on: "${{ inputs.runs-on }}"
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/dotnet-lib-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
validate_version:
name: Validate Version
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand All @@ -193,7 +193,7 @@ jobs:
validate_tag:
name: Validate Tag
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand All @@ -205,7 +205,7 @@ jobs:
nuget_pkg_does_not_exist:
name: Validate NuGet Package Does Not Exist
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
version: "${{ needs.validate_version.outputs.version }}"
Expand All @@ -214,7 +214,7 @@ jobs:
validate_milestone_status:
name: Validate Milestone Status
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
version: "${{ needs.validate_version.outputs.version }}"
Expand All @@ -225,7 +225,7 @@ jobs:
validate_github_release:
name: GitHub Release Does Not Exist
needs: [validate_version]
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
version: "${{ needs.validate_version.outputs.version }}"
Expand All @@ -236,7 +236,7 @@ jobs:
build_project:
name: Build Main Project
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}"
runs-on: "${{ inputs.runs-on }}"
Expand All @@ -247,7 +247,7 @@ jobs:
run_tests:
name: Run Tests
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: "${{ inputs.project-name }}Tests"
runs-on: "${{ inputs.runs-on }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-csharp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
resolve_proj_file_path:
name: Resolving ${{ inputs.project-name }} Project File Path
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].0
uses: KinsonDigital/Infrastructure/.github/workflows/[email protected].1
with:
project-name: ${{ inputs.project-name }}
base-path: ${{ inputs.base-path }}
Expand Down
Loading

0 comments on commit 0568094

Please sign in to comment.