Skip to content

Commit

Permalink
Merge pull request #119 from stuartleeks/gh-emoji
Browse files Browse the repository at this point in the history
Add emojis to stages in GH action
  • Loading branch information
stuartleeks authored Jun 1, 2022
2 parents 616c58e + 5004427 commit 9e87e54
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions github-action/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion github-action/dist/index.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions github-action/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function runMain() {
// resolves a previous image for the tag as a layer cache (if pushed to a registry)
cacheFrom.splice(0, 0, fullImageName);
}
const buildResult = yield core.group('build container', () => __awaiter(this, void 0, void 0, function* () {
const buildResult = yield core.group('🏗️ build container', () => __awaiter(this, void 0, void 0, function* () {
const args = {
workspaceFolder,
imageName: fullImageName,
Expand All @@ -93,7 +93,7 @@ function runMain() {
if (buildResult.outcome !== 'success') {
return;
}
const upResult = yield core.group('start container', () => __awaiter(this, void 0, void 0, function* () {
const upResult = yield core.group('🏃 start container', () => __awaiter(this, void 0, void 0, function* () {
const args = {
workspaceFolder,
additionalCacheFroms: cacheFrom,
Expand All @@ -109,7 +109,7 @@ function runMain() {
if (upResult.outcome !== 'success') {
return;
}
const execResult = yield core.group('Run command in container', () => __awaiter(this, void 0, void 0, function* () {
const execResult = yield core.group('🚀 Run command in container', () => __awaiter(this, void 0, void 0, function* () {
const args = {
workspaceFolder,
command: ['bash', '-c', runCommand],
Expand Down
6 changes: 3 additions & 3 deletions github-action/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export async function runMain(): Promise<void> {
// resolves a previous image for the tag as a layer cache (if pushed to a registry)
cacheFrom.splice(0, 0, fullImageName);
}
const buildResult = await core.group('build container', async () => {
const buildResult = await core.group('🏗️ build container', async () => {
const args: DevContainerCliBuildArgs = {
workspaceFolder,
imageName: fullImageName,
Expand All @@ -76,7 +76,7 @@ export async function runMain(): Promise<void> {
return;
}

const upResult = await core.group('start container', async () => {
const upResult = await core.group('🏃 start container', async () => {
const args: DevContainerCliUpArgs = {
workspaceFolder,
additionalCacheFroms: cacheFrom,
Expand All @@ -96,7 +96,7 @@ export async function runMain(): Promise<void> {
}

const execResult = await core.group(
'Run command in container',
'🚀 Run command in container',
async () => {
const args: DevContainerCliExecArgs = {
workspaceFolder,
Expand Down

0 comments on commit 9e87e54

Please sign in to comment.