Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pyTooling/Actions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.0
Choose a base ref
...
head repository: pyTooling/Actions
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 14, 2025

  1. Fixed delimiter sign for category splitting at ','.

    Paebbels committed Jan 14, 2025
    Copy the full SHA
    1e6b71e View commit details
  2. v4.0.1

    Paebbels committed Jan 14, 2025
    Copy the full SHA
    b1e4cb9 View commit details
Showing with 5 additions and 183 deletions.
  1. +2 −2 .github/workflows/NightlyRelease.yml
  2. +2 −2 .github/workflows/_Checking_JobTemplates.yml
  3. +0 −178 ExamplePipeline.yml
  4. +1 −1 README.md
4 changes: 2 additions & 2 deletions .github/workflows/NightlyRelease.yml
Original file line number Diff line number Diff line change
@@ -439,8 +439,8 @@ jobs:
)
while [[ "${categories}" != "${category}" ]]; do
category="${categories##*;}"
categories="${categories%;*}"
category="${categories##*,}"
categories="${categories%,*}"
jsonEntry=$(jq -c -n --arg cat "${category}" --argjson value "${jsonEntry}" '{$cat: $value}')
done
4 changes: 2 additions & 2 deletions .github/workflows/_Checking_JobTemplates.yml
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ jobs:
html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}

DocCoverage:
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@dev
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@main
needs:
- ConfigParams
- UnitTestingParams
@@ -141,7 +141,7 @@ jobs:
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}

IntermediateCleanUp:
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@dev
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@main
needs:
- UnitTestingParams
- PublishCoverageResults
178 changes: 0 additions & 178 deletions ExamplePipeline.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -100,7 +100,7 @@ As shown in the screenshots above, the expected order is:

### Example pipeline

[ExamplePipeline.yml](ExamplePipeline.yml) is an example Workflow which uses all of the Reusable Workflows.
ExamplePipeline.yml is an example Workflow which uses all of the Reusable Workflows.
Python package/tool developers can copy it into their repos, in order to use al the reusable workflows straightaway.
Minimal required modifications are the following: