Skip to content

Commit e260c00

Browse files
ci: use targeted monorepo TagBot (#1080)
Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com>
1 parent 23cd53b commit e260c00

1 file changed

Lines changed: 21 additions & 11 deletions

File tree

.github/workflows/TagBot.yml

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +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/LinearSolveAutotune"
16-
- "lib/LinearSolvePyAMG"
17-
uses: "SciML/.github/.github/workflows/tagbot.yml@v1"
27+
uses: "SciML/.github/.github/workflows/monorepo-tagbot.yml@v1"
1828
with:
19-
subdir: "${{ matrix.subdir }}"
29+
package: "${{ inputs.package }}"
2030
secrets: "inherit"

0 commit comments

Comments
 (0)