This repository was archived by the owner on Jun 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,21 +30,20 @@ jobs:
3030 $line = (git submodule status --recursive | Select-Object -First 1).Trim()
3131 $hash = ($line -split '\s+')[0].TrimStart('-','+')
3232 $shortHash = $hash.Substring(0,7)
33- $commitUrl = "https://github.com/OrchardCoreContrib/OrchardCoreContrib.App/commit/$hash"
34- "full=$hash" >> $env:GITHUB_OUTPUT
35- "short=$shortHash" >> $env:GITHUB_OUTPUT
33+ $commitUrl = "https://github.com/OrchardCoreContrib/OrchardCoreContrib.Library/commit/$hash"
34+ "shortHash=$shortHash" >> $env:GITHUB_OUTPUT
3635 "url=$commitUrl" >> $env:GITHUB_OUTPUT
3736
3837 - name : Create Pull Request
3938 uses : peter-evans/create-pull-request@v7
4039 with :
4140 token : ${{ secrets.OCC_TOKEN }}
4241 commit-message : Update submodule to latest version
43- title : Update OCC .Library submodule to commit ${{ steps.submodule-hash.outputs.short }}
42+ title : Update OrchardCoreContrib .Library submodule to latest version
4443 body : |
4544 Automated submodule update generated by workflow.
4645
47- Commit: [`${{ steps.submodule-hash.outputs.short }}`](${{ steps.submodule-hash.outputs.url }})
46+ Commit: [`${{ steps.submodule-hash.outputs.shortHash }}`](${{ steps.submodule-hash.outputs.url }})
4847 branch : update-submodules
4948 delete-branch : true
5049 base : main
You can’t perform that action at this time.
0 commit comments