Skip to content

Commit

Permalink
update override
Browse files Browse the repository at this point in the history
  • Loading branch information
cesaregarza committed May 25, 2024
1 parent 2cf4762 commit 5603352
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/update_k8s_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- name: Check for changes
id: check_changes
run: |
if [ "${{ github.event.inputs.override-check }}" == 'true' ]; then
echo "Override check is true, skipping change detection"
echo "python_changed=true" >> $GITHUB_OUTPUT
echo "react_changed=true" >> $GITHUB_OUTPUT
echo "exit_pipeline=false" >> $GITHUB_OUTPUT
exit 0
fi
echo "Checking for changes in src/"
LATEST_TAG=$(git describe --tags --always `git rev-list --tags --max-count=1` 2>&1)
TAG_FETCH_EXIT_CODE=$?
Expand Down

0 comments on commit 5603352

Please sign in to comment.