We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8aa138 commit 8fd3f65Copy full SHA for 8fd3f65
.github/workflows/ci.yml
@@ -13,6 +13,7 @@ on:
13
14
jobs:
15
build:
16
+ # Run only on non-Dependabot PRs
17
if: github.actor != 'dependabot[bot]'
18
runs-on: ubuntu-latest
19
strategy:
.github/workflows/dependabot-uv-lock.yml
@@ -7,16 +7,15 @@ name: uv.lock on Dependabot PRs
7
8
on:
9
pull_request:
10
- types: [opened, synchronize]
11
- paths:
12
- - "pyproject.toml"
+ paths: ["pyproject.toml"]
permissions:
contents: write
pull-requests: write
actions: write
uv-lock:
+ # Run only on Dependabot PRs
20
if: github.actor == 'dependabot[bot]'
21
22
steps:
0 commit comments