Skip to content

Commit bef206c

Browse files
Merge branch 'main' into dev
2 parents 4b0e3ce + 7dab71f commit bef206c

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Test Compilation
2+
on:
3+
pull_request:
4+
branches:
5+
- '!main'
6+
push:
7+
branches:
8+
- '!main'
9+
10+
jobs:
11+
tsc:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repo
15+
uses: actions/checkout@v3
16+
17+
- name: Setup PNPM
18+
uses: pnpm/action-setup@v2
19+
with:
20+
version: latest
21+
22+
- name: Setup Node
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: 18
26+
cache: "pnpm"
27+
28+
- name: Install dependencies
29+
run: pnpm install
30+
31+
- name: Build Packages
32+
run: pnpm run build

src/cli/commands/revert/prompts.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ export function displayRevertConfirmation(
141141
);
142142
const displaySubject = formatForDisplay(commit.subject, emojiModeActive);
143143
console.log(` ${textColors.brightWhite("Original:")} ${displaySubject}`);
144+
console.log(` ${textColors.brightWhite("Original:")} ${commit.subject}`);
144145
console.log();
145146
console.log(
146147
` ${attention("This will create a new commit that undoes these changes.")}`,

0 commit comments

Comments
 (0)