@@ -32,11 +32,11 @@ jobs:
3232 fail-fast : false
3333 matrix :
3434 os : [ubuntu-latest, macos-latest]
35- is-merge-queue :
36- - ${{ github.event_name == 'merge_group ' }}
35+ is-pull-request :
36+ - ${{ github.event_name == 'pull_request ' }}
3737 exclude :
3838 - os : macos-latest
39- is-merge-queue : true
39+ is-pull-request : false
4040 runs-on : ${{ matrix.os }}
4141 timeout-minutes : 10
4242 permissions :
5252 fetch-depth : 300
5353 - uses : ./.github/actions/untracked
5454 - uses : ./.github/actions/setup-python
55+ with :
56+ pin-micro-version : false
5557 - uses : ./.github/actions/setup-node
5658 - name : Add problem matchers
5759 if : matrix.os == 'ubuntu-latest'
@@ -103,10 +105,8 @@ jobs:
103105 files=$(gh pr view "${PR_NUMBER}" --repo "${REPO}" --json files --jq '.files[].path')
104106 if echo "$files" | grep -q '^uv.lock$' && echo "$files" | grep -q '^pyproject.toml$'; then
105107 echo '::warning file=pyproject.toml,line=1,col=1::[Non-blocking]' \
106- 'Ignore if you did not intend to upgrade package versions.' \
107- '`uv lock` does not automatically upgrade package versions' \
108- 'when relaxing version constraints (e.g., bumping max version).' \
109- 'Use `uv lock --upgrade-package <package>` to upgrade.'
108+ 'Run `uv lock --upgrade-package <package>` if this PR should update package versions.' \
109+ '`uv lock` alone won'"'"'t bump them.'
110110 fi
111111
112112 - name : Check unused media
0 commit comments