From e308287e474e4bde6938c5803f11d5c088c04d1f Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Fri, 10 Jul 2026 19:28:55 -0400 Subject: [PATCH] ci: use targeted monorepo TagBot\n\nCo-Authored-By: Chris Rackauckas --- .github/workflows/TagBot.yml | 38 ++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 5b9ed11..3e95c5d 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -3,24 +3,28 @@ on: issue_comment: types: [created] workflow_dispatch: + inputs: + package: + description: "Package name to tag; empty audits every package" + required: false + type: string +permissions: + actions: read + checks: read + contents: write + deployments: read + issues: read + discussions: read + packages: read + pages: read + pull-requests: read + repository-projects: read + security-events: read + statuses: read + jobs: tagbot: - uses: "SciML/.github/.github/workflows/tagbot.yml@v1" - secrets: "inherit" - - tagbot-subpackages: - strategy: - fail-fast: false - matrix: - subdir: - - "lib/BVProblemLibrary" - - "lib/DAEProblemLibrary" - - "lib/DDEProblemLibrary" - - "lib/JumpProblemLibrary" - - "lib/NonlinearProblemLibrary" - - "lib/ODEProblemLibrary" - - "lib/SDEProblemLibrary" - uses: "SciML/.github/.github/workflows/tagbot.yml@v1" + uses: "SciML/.github/.github/workflows/monorepo-tagbot.yml@v1" with: - subdir: "${{ matrix.subdir }}" + package: "${{ inputs.package }}" secrets: "inherit"