Skip to content

Commit

Permalink
Added exception for feat/codecov into continuous-delivery.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lodewiges authored Oct 12, 2024
1 parent a5c2c75 commit 58e8879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Validate branch
run: |
if [ "$GITHUB_REF_NAME" != 'staging' ] && [ "$GITHUB_REF_NAME" != 'master' ]; then
if [ "$GITHUB_REF_NAME" != 'feat/codecov' ] && [ "$GITHUB_REF_NAME" != 'staging' ] && [ "$GITHUB_REF_NAME" != 'master' ]; then
echo 'This workflow can only be run on branches staging and master.'
exit 1
fi
Expand Down

0 comments on commit 58e8879

Please sign in to comment.