Skip to content

Commit

Permalink
move harcoded values to secrets with a default value
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrieiz committed Aug 10, 2023
1 parent 57e4b7a commit d89ef1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
env:
RAILS_ENV: test
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
CI_NODE_TOTAL: 1
CI_NODE_INDEX: 0
CI_NODE_TOTAL: ${{ secrets.CI_NODE_TOTAL ?? 1}}
CI_NODE_INDEX: ${{ secrets.CI_NODE_INDEX ?? 0}}

steps:
- name: Checkout code
Expand Down

0 comments on commit d89ef1b

Please sign in to comment.