Conversation
jessgusclark
commented
Jan 9, 2026
- take github hash and store as an env variable
- output it into the footer
- take github hash and store as an env variable - output it into the footer
There was a problem hiding this comment.
Pull request overview
This PR adds visibility of the currently deployed Git commit hash in the application footer. The changes extract the GitHub commit SHA during the build process and display a shortened version (first 7 characters) in the footer alongside the existing version information.
Key Changes:
- Displays the Git commit hash (shortened to 7 characters) in the application footer
- Passes the GitHub commit SHA as an environment variable during the build process across all deployment workflows
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/app/components/FooterComponent.js | Adds conditional rendering of the Git hash in the footer display |
| .github/workflows/qa-deploy.yml | Exports REACT_APP_GIT_HASH environment variable before building for QA deployment |
| .github/workflows/gh-deploy.yml | Exports REACT_APP_GIT_HASH environment variable before building for GitHub Pages deployment |
| .github/workflows/deploy.yml | Exports REACT_APP_GIT_HASH environment variable before building for both testnet and mainnet deployments |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


