We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143b734 commit 99746caCopy full SHA for 99746ca
.github/workflows/update-submodules.yml
@@ -22,7 +22,7 @@ jobs:
22
git submodule update --init --remote
23
24
# Collect commit IDs for each submodule
25
- COMMIT_IDS=$(git submodule foreach 'echo $path: $(git rev-parse HEAD)')
+ COMMIT_IDS=$(git submodule foreach --quiet 'echo $path: $(git rev-parse HEAD)')
26
27
echo -e "Submodule commits:\n${COMMIT_IDS}"
28
@@ -57,7 +57,7 @@ jobs:
57
58
# Create a Pull Request with submodule commit IDs in the title
59
PR_TITLE="Update submodules to latest commits"
60
- PR_BODY="This PR updates all submodules to their latest commits.\n\n${COMMIT_IDS}"
+ PR_BODY="This PR updates all submodules to their latest commits:\n\n${COMMIT_IDS}"
61
gh pr create --title "$PR_TITLE" --body "$PR_BODY" --base master --head $BRANCH_NAME
62
else
63
echo "No submodule updates found"
0 commit comments