Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/update-submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ jobs:
run: |
MODULE="${{ github.event.client_payload.module || inputs.module }}"
VERSION="${{ github.event.client_payload.version || inputs.version }}"
echo "module=$MODULE" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "module=$MODULE" >> "$GITHUB_OUTPUT"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"

cd "modules/$MODULE"
git fetch origin --tags
git checkout "$VERSION"
# The runner checkout may normalize tracked files differently from the
# submodule commit. The worktree is disposable; always select the
# released tag instead of treating those generated changes as user work.
git checkout --force "$VERSION"
cd ../..
git add "modules/$MODULE"

Expand Down
2 changes: 1 addition & 1 deletion modules/JiraAgilePS
Submodule JiraAgilePS updated 46 files
+10 −60 .github/ai-context/releasing.md
+4 −0 .github/dependabot.yml
+112 −107 .github/workflows/ci.yml
+30 −0 .github/workflows/continuous_release.yml
+2 −2 .github/workflows/copilot-setup-steps.yml
+99 −99 .github/workflows/integration_tests.yml
+0 −77 .github/workflows/release.yml
+16 −0 .github/workflows/release_intent.yml
+2 −0 .gitignore
+4 −3 AGENTS.md
+9 −1 CHANGELOG.md
+88 −173 JiraAgilePS.build.ps1
+7 −5 JiraAgilePS/JiraAgilePS.psd1
+1 −1 LICENSE
+2 −2 Tests/Build.Tests.ps1
+1 −1 Tests/Functions/Private/.template.ps1
+1 −1 Tests/Functions/Private/ConvertTo-Board.Unit.Tests.ps1
+1 −1 Tests/Functions/Private/ConvertTo-BoardConfiguration.Unit.Tests.ps1
+1 −1 Tests/Functions/Private/ConvertTo-Epic.Unit.Tests.ps1
+1 −1 Tests/Functions/Private/ConvertTo-Issue.Unit.Tests.ps1
+1 −1 Tests/Functions/Private/ConvertTo-Sprint.Unit.Tests.ps1
+1 −1 Tests/Functions/Private/Get-AgilePageItem.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/.template.ps1
+1 −1 Tests/Functions/Public/Add-IssueToSprint.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Get-Board.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Get-BoardConfiguration.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Get-Epic.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Get-Issue.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Get-Sprint.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Move-IssueToBacklog.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/New-Sprint.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Remove-Sprint.Unit.Tests.ps1
+1 −1 Tests/Functions/Public/Set-Sprint.Unit.Tests.ps1
+1 −1 Tests/Help.Tests.ps1
+1 −1 Tests/Helpers/IntegrationTestTools.Tests.ps1
+1 −1 Tests/Integration/.template.ps1
+1 −1 Tests/Integration/AgileParity.Integration.Tests.ps1
+1 −1 Tests/Integration/AgileSmoke.Integration.Tests.ps1
+3 −3 Tests/JiraAgilePS.Tests.ps1
+5 −2 Tests/Project.Tests.ps1
+1 −1 Tests/README.md
+1 −1 Tests/Style.Tests.ps1
+1 −1 Tests/TestTools.Tests.ps1
+93 −0 Tests/Tools/StandardsVersionConsistency.Unit.Tests.ps1
+9 −9 Tools/build.requirements.psd1
+61 −33 Tools/setup.ps1