Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Commit 3fd840b

Browse files
committed
Update title
1 parent 3dc413a commit 3fd840b

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/update-submodule.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)