Skip to content

Commit 071cdba

Browse files
committed
ci(efabless_tapeout): print tapeout job name
also include the tapeout job name + workflow URL in the GitHub workflow step summary, and add the short commit hash to the efabless repo commit message header.
1 parent 3543d2f commit 071cdba

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/efabless_tapeout.yaml

+17-3
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,29 @@ jobs:
3939
- name: Commit and push
4040
working-directory: tt_efabless
4141
shell: bash
42+
env:
43+
WORKFLOW_URL: '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ fromJSON(steps.download_artifact.outputs.artifacts)[0].workflow_run.id }}'
44+
WORKFLOW_HEAD_SHA: '${{ fromJSON(steps.download_artifact.outputs.artifacts)[0].workflow_run.head_sha }}'
4245
run: |
4346
COMMIT_BODY="\
44-
run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ fromJSON(steps.download_artifact.outputs.artifacts)[0].workflow_run.id }}
45-
commit: ${{ fromJSON(steps.download_artifact.outputs.artifacts)[0].workflow_run.head_sha }}
47+
run: $WORKFLOW_URL
48+
commit: $WORKFLOW_HEAD_SHA
4649
"
4750
51+
DATE=$(date +%Y%m%d)
52+
SHORT_SHA=$(echo $WORKFLOW_HEAD_SHA | cut -c1-7)
53+
54+
echo "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓"
55+
echo "┃ Tapeout job name: TT-${DATE}-${SHORT_SHA} ┃"
56+
echo "┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛"
57+
echo ""
58+
59+
echo "Tapeout job name: \`TT-${DATE}-${SHORT_SHA}\`" >> $GITHUB_STEP_SUMMARY
60+
echo "Workflow run: $WORKFLOW_URL" >> $GITHUB_STEP_SUMMARY
61+
4862
git add -A
4963
if ! git diff-index --quiet HEAD; then
50-
git commit -m "update shuttle" -m "$COMMIT_BODY"
64+
git commit -m "update shuttle ($SHORT_SHA)" -m "$COMMIT_BODY"
5165
fi
5266
echo ""
5367
git log -1

0 commit comments

Comments
 (0)