We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7a864b commit 14e5d05Copy full SHA for 14e5d05
src/services/slack.ts
@@ -121,7 +121,7 @@ export class Slack {
121
122
const res = await this.client.chat.postMessage({
123
channel: this.channelId,
124
- text: mainText,
+ text: `${mainText} at ${this.githubConfig.repository}`,
125
attachments: [
126
{
127
color,
src/utils/validate-input.ts
@@ -4,7 +4,7 @@ import * as core from '@actions/core'
4
import { getFileFromBranch } from '@/utils/get-file-from-branch'
5
6
const DEFAULT_OPENAPI_FILE_PATH = 'openapi.json'
7
-const MOCKUP_REPOSITORY = '/mockup_owner/mockup_repo'
+const MOCKUP_REPOSITORY = 'mockup_owner/mockup_repo'
8
const MOCKUP_SHA = 'mockup123_sha'
9
const MOCKUP_MESSAGE = 'mockup message for testing'
10
0 commit comments