Add a workaround for the removal of top-level TFMA attributes (#7637) #276
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
# Ensure the full history is fetched | |
# This is required to run pre-commit on a specific set of commits | |
# TODO: Remove this when all the pre-commit issues are fixed | |
fetch-depth: 0 | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Determine commit range | |
id: commit_range | |
run: | | |
echo "TO_REF=${{ github.sha }}" >> $GITHUB_ENV | |
if [ "${{ github.event_name }}" == "pull_request" ]; then | |
echo "FROM_REF=${{ github.event.pull_request.base.sha }}" >> $GITHUB_ENV | |
else | |
echo "FROM_REF=${{ github.event.before }}" >> $GITHUB_ENV | |
fi | |
- uses: pre-commit/[email protected] | |
with: | |
# TODO: Remove this when all the pre-commit issues are fixed | |
extra_args: --from-ref ${{ env.FROM_REF }} --to-ref ${{ env.TO_REF }} |