Skip to content

Commit

Permalink
add auth step
Browse files Browse the repository at this point in the history
  • Loading branch information
josiahzimmerman-caci committed Feb 2, 2024
1 parent dbf0705 commit 91e0b79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ jobs:
- run:
name: Check if Prod approval has rights
command: |
if [[ $CIRCLE_USERNAME != "josiahzimmerman-caci" OR $CIRCLE_USERNAME != "deandrejones" OR $CIRCLE_USERNAME != "cameroncaci" ]]; then
if [[ $CIRCLE_USERNAME != "josiahzimmerman-caci" || $CIRCLE_USERNAME != "deandrejones" || $CIRCLE_USERNAME != "cameroncaci" ]]; then
circleci-agent step halt
fi
- run: echo "build approved by $CIRCLE_USERNAME"
Expand All @@ -2031,7 +2031,7 @@ jobs:
- run:
name: Check if Prod approval has rights
command: |
if [[ $CIRCLE_USERNAME != "josiahzimmerman-caci" OR $CIRCLE_USERNAME != "deandrejones" OR $CIRCLE_USERNAME != "cameroncaci" ]]; then
if [[ $CIRCLE_USERNAME != "josiahzimmerman-caci" || $CIRCLE_USERNAME != "deandrejones" || $CIRCLE_USERNAME != "cameroncaci" ]]; then
circleci-agent step halt
fi
- run: echo "build approved by $CIRCLE_USERNAME"
Expand Down

0 comments on commit 91e0b79

Please sign in to comment.