Skip to content

Make EcsCredentialProvider retry behavior configurable #338

Make EcsCredentialProvider retry behavior configurable

Make EcsCredentialProvider retry behavior configurable #338

Workflow file for this run

name: Model Change Scan
on:
pull_request:
branches: [master]
permissions:
contents: read
jobs:
verify-no-models-changes:
runs-on: ubuntu-latest
name: Check for model changes
steps:
- name: Checkout codebase
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- run: |
BASE_REPO="${GITHUB_EVENT_PULL_REQUEST_BASE_REPO_CLONE_URL}"
git fetch $BASE_REPO master:master -q
CHANGED_FILES=$(git diff --name-only FETCH_HEAD...HEAD -- src/data/)
if [ ! -z "$CHANGED_FILES" ]; then
echo "Changes detected in the following models:"
echo "$CHANGED_FILES"
exit 1
fi
env:
GITHUB_EVENT_PULL_REQUEST_BASE_REPO_CLONE_URL: ${{ github.event.pull_request.base.repo.clone_url }}