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"