Skip to content

Commit

Permalink
Merge pull request #26 from Supernova-Studio/sergii/sdk-v2
Browse files Browse the repository at this point in the history
ENG-1181: Add proxyUrl flag to commands
  • Loading branch information
tchief authored Jan 30, 2024
2 parents 7e8c7b7 + fe19fc1 commit 9b90815
Show file tree
Hide file tree
Showing 14 changed files with 489 additions and 443 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: Install CLI @develop
on:
# push:
# branches: [ main ]
pull_request:
branches:
- "main"
# pull_request:
# branches:
# - "main"
workflow_dispatch:
workflow_run:
workflows: ["Deploy to PROD"]
types:
- completed

jobs:
build:
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Notify Slack

on:
workflow_dispatch:
workflow_run:
# Add "Install CLI @develop" and notify on both with different message, or use separate action as
# >If you specify multiple workflows for the workflow_run event, only one of the workflows needs to run. For example, a workflow with the following trigger will run whenever the "Staging" workflow or the "Lab" workflow completes.
workflows: ["Install CLI @PROD"]
types: [completed]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}

steps:
- uses: actions/setup-node@v3
with:
node-version: lts/Hydrogen

- name: Install Slack bot
run: npm i -g @supernova-studio/ci-bot

- name: Get NPM version
id: package-version
uses: martinbeentjes/[email protected]

- name: Notify Slack channel on success
run: supernova-ci-bot slack-send-message -c "#ci-cli" -m "New version of Supernova CLI is published!\n - ${{ steps.package-version.outputs.current-version}}\n${{ secrets.SLACK_CC }}"
if: ${{ github.event.workflow_run.conclusion == 'success' }}

- name: Notify Slack channel on failure
run: supernova-ci-bot slack-send-message -c "#ci-cli" -m "Running smoke tests for CLI has failed!\n - ${{ steps.package-version.outputs.current-version}}\n${{ secrets.SLACK_CC }}"
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
Loading

0 comments on commit 9b90815

Please sign in to comment.