[CG-10888] fix: Wildcard resolution #1875
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: | |
branches: | |
- "develop" | |
push: | |
branches: | |
- "develop" | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
- name: Setup environment | |
uses: ./.github/actions/setup-environment | |
- name: Setup-pre-commit | |
run: uv tool install pre-commit --with pre-commit-uv --force-reinstall | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} | |
restore-keys: pre-commit | |
- run: uv run --frozen pre-commit run --show-diff-on-failure --color=always --all-files --source ${{ github.event.pull_request.base.sha || github.event.before }} --origin ${{ github.event.pull_request.head.sha || github.event.after }} | |
shell: bash | |
env: | |
SKIP: circleci_validate | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
# Always commit changes even if pre-commit failed | |
if: always() && github.event_name == 'pull_request' | |
with: | |
commit_message: "Automated pre-commit update" | |
push_options: "--no-verify" |