diff options
author | Kyle Speer <54034650+kspeer825@users.noreply.github.com> | 2020-10-06 08:36:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 08:36:54 -0400 |
commit | 954c8d34868a6314321fa892a991e44c76ee5e99 (patch) | |
tree | cf44485027e3d264ffda9e6eb3ba546720fe394e | |
parent | 75b9b1fe58b8be535fc772eab55cc14e201aadf7 (diff) | |
download | tap-google-sheets-954c8d34868a6314321fa892a991e44c76ee5e99.tar.gz tap-google-sheets-954c8d34868a6314321fa892a991e44c76ee5e99.tar.zst tap-google-sheets-954c8d34868a6314321fa892a991e44c76ee5e99.zip |
add slack orb and context user (#20)
Co-authored-by: Kyle Speer <kspeer@stitchdata.com>
-rw-r--r-- | .circleci/config.yml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index fb0569b..bb39c2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml | |||
@@ -1,4 +1,7 @@ | |||
1 | version: 2 | 1 | version: 2.1 |
2 | orbs: | ||
3 | slack: circleci/slack@3.4.2 | ||
4 | |||
2 | jobs: | 5 | jobs: |
3 | build: | 6 | build: |
4 | docker: | 7 | docker: |
@@ -38,11 +41,15 @@ jobs: | |||
38 | --password=$SANDBOX_PASSWORD \ | 41 | --password=$SANDBOX_PASSWORD \ |
39 | --client-id=50 \ | 42 | --client-id=50 \ |
40 | tap_tester.suites.google_sheets | 43 | tap_tester.suites.google_sheets |
44 | - slack/notify-on-failure: | ||
45 | only_for_branches: master | ||
46 | |||
41 | workflows: | 47 | workflows: |
42 | version: 2 | 48 | version: 2 |
43 | commit: | 49 | commit: |
44 | jobs: | 50 | jobs: |
45 | - build | 51 | - build: |
52 | context: circleci-user | ||
46 | build_daily: | 53 | build_daily: |
47 | triggers: | 54 | triggers: |
48 | - schedule: | 55 | - schedule: |
@@ -52,4 +59,5 @@ workflows: | |||
52 | only: | 59 | only: |
53 | - master | 60 | - master |
54 | jobs: | 61 | jobs: |
55 | - build | 62 | - build: |
63 | context: circleci-user | ||