Skip to content

Commit 541934f

Browse files
authored
Even More Debugging (#634)
1 parent 1b80f5d commit 541934f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/deploy-to-control-plane-review-app.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ env:
2323
CPLN_TOKEN: ${{ secrets.CPLN_TOKEN_STAGING }}
2424
CPLN_ORG: ${{ vars.CPLN_ORG_STAGING }}
2525
PR_NUMBER: ${{ github.event.pull_request.number || github.event.issue.number || github.event.inputs.pr_number }}
26+
PR_SHA: ${{ github.sha }}
2627

2728
jobs:
2829
debug:
@@ -198,7 +199,7 @@ jobs:
198199
id: init-deployment
199200
with:
200201
script: |
201-
const ref = github.sha;
202+
const ref = process.env.PR_SHA;
202203
const environment = process.env.ENVIRONMENT_NAME || 'review-app';
203204
204205
const deployment = await github.rest.repos.createDeployment({

client/app/bundles/comments/components/Footer/Footer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default class Footer extends BaseComponent {
1414
</a>
1515
<a href="https://x.com/railsonmaui" className="flex gap-4 items-center">
1616
<div className="w-16 h-16 bg-[url('../images/twitter_64.png')]" />
17-
Rails On Maui on X
17+
Rails On Maui on X/Twitter
1818
</a>
1919
</div>
2020
</footer>

0 commit comments

Comments
 (0)