We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12c6eac commit 2846f47Copy full SHA for 2846f47
.github/workflows/build.yml
@@ -51,7 +51,11 @@ jobs:
51
git push -u origin "$STAGING_BRANCH"
52
53
# Create a pull request using GitHub CLI
54
- gh pr create --title "Deploy $GROUP_ID:$ARTIFACT_ID:$VERSION" --base main --head "$STAGING_BRANCH"
+ RUN_URL="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
55
+ gh pr create \
56
+ --title "Deploy $GROUP_ID:$ARTIFACT_ID:$VERSION" \
57
+ --body "This PR deploys $GROUP_ID:$ARTIFACT_ID:$VERSION. [View the action run]($RUN_URL)" \
58
+ --base main --head "$STAGING_BRANCH"
59
60
- name: Generate JaCoCo Badge
61
id: jacoco
0 commit comments