Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
fix: remove slack webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
arantespp committed Sep 16, 2021
1 parent d27285c commit c89b67d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cicd/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ssh-key*
npmtoken
secrets.ts
7 changes: 3 additions & 4 deletions cicd/carlin.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import * as fs from 'fs';
import { secrets } from './secrets';

export default {
pipelines: ['main', 'tag', 'pr'],
slackWebhookUrl:
'https://hooks.slack.com/services/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',
slackWebhookUrl: secrets.slackWebhookUrl,
sshKey: './ssh-key',
sshUrl: '[email protected]:ttoss/carlin.git',
taskEnvironment: [
{
name: 'NPM_TOKEN',
value: fs.readFileSync('./npmtoken', 'utf-8'),
value: secrets.npmToken,
},
],
};

0 comments on commit c89b67d

Please sign in to comment.