mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
After https://github.com/pytorch/pytorch/pull/160635, I can see dependabot creating the PR to bump `transformers` version at https://github.com/pytorch/pytorch/pull/160807. This a good start, but there are several tweaks we need: 1. Run inductor tests on the PR including one round of perf benchmark, which is always needed. So, we need `ciflow/inductor` label and a `pull_request` trigger for the benchmark 2. Per @anijain2305 feedback, we don't need to update patch version. So, I add a rule to ignore it. Again, we would need to test this out after this lands. Pull Request resolved: https://github.com/pytorch/pytorch/pull/160935 Approved by: https://github.com/anijain2305
25 lines
625 B
YAML
25 lines
625 B
YAML
version: 2
|
|
updates:
|
|
# Update to the latest transformers version with dependabot
|
|
- package-ecosystem: "pip"
|
|
directory: "/.ci/docker/ci_commit_pins"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "main"
|
|
allow:
|
|
- dependency-name: "transformers"
|
|
ignore:
|
|
- dependency-name: "*"
|
|
update-types: ["version-update:semver-patch"]
|
|
commit-message:
|
|
prefix: "[Dependabot] Update"
|
|
include: "scope"
|
|
labels:
|
|
- "dependencies"
|
|
- "open source"
|
|
- "python"
|
|
- "topic: not user facing"
|
|
- "module: ci"
|
|
- "module: inductor"
|
|
- "ciflow/inductor"
|