Skip to content

Commit 906ff89

Browse files
Merge pull request #550 from ChrisRackauckas-Claude/agent/targeted-monorepo-tagbot
ci: use targeted monorepo TagBot
2 parents fcc08ec + 901e6e3 commit 906ff89

1 file changed

Lines changed: 21 additions & 15 deletions

File tree

.github/workflows/TagBot.yml

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,28 @@ on:
33
issue_comment:
44
types: [created]
55
workflow_dispatch:
6+
inputs:
7+
package:
8+
description: "Package name to tag; empty audits every package"
9+
required: false
10+
type: string
11+
permissions:
12+
actions: read
13+
checks: read
14+
contents: write
15+
deployments: read
16+
issues: read
17+
discussions: read
18+
packages: read
19+
pages: read
20+
pull-requests: read
21+
repository-projects: read
22+
security-events: read
23+
statuses: read
24+
625
jobs:
726
tagbot:
8-
uses: "SciML/.github/.github/workflows/tagbot.yml@v1"
9-
secrets: "inherit"
10-
tagbot-subpackages:
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
subdir:
15-
- "lib/BoundaryValueDiffEqCore"
16-
- "lib/BoundaryValueDiffEqMIRK"
17-
- "lib/BoundaryValueDiffEqFIRK"
18-
- "lib/BoundaryValueDiffEqMIRKN"
19-
- "lib/BoundaryValueDiffEqAscher"
20-
- "lib/BoundaryValueDiffEqShooting"
21-
uses: "SciML/.github/.github/workflows/tagbot.yml@v1"
27+
uses: "SciML/.github/.github/workflows/monorepo-tagbot.yml@v1"
2228
with:
23-
subdir: "${{ matrix.subdir }}"
29+
package: "${{ inputs.package }}"
2430
secrets: "inherit"

0 commit comments

Comments
 (0)