Skip to content

Commit

Permalink
SYS-183 update to call a reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TieDyedSheep committed May 23, 2024
1 parent 818a84d commit eef2f72
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ on:
- dev
- main
jobs:
ci-dev:
if: ${{ github.event.inputs.workflowBranch == 'dev' }}
uses: shardeum/github-automation/.github/workflows/node-ci-shared.yml@dev
ci:
- name: Run CI for dev
if: ${{ github.event.inputs.workflowBranch == 'dev' }}
uses: shardeum/github-automation/.github/workflows/node-ci-shared.yml@dev

ci-main:
if: ${{ github.event.inputs.workflowBranch == 'main' }}
uses: shardeum/github-automation/.github/workflows/node-ci-shared.yml@main
- name: Run CI for main
if: ${{ github.event.inputs.workflowBranch == 'main' || !github.event.inputs.workflowBranch }}
uses: shardeum/github-automation/.github/workflows/node-ci-shared.yml@main

0 comments on commit eef2f72

Please sign in to comment.