Skip to content

Commit

Permalink
Merge pull request #262 from ErikQQY/qqy/tagbot
Browse files Browse the repository at this point in the history
Add TagBot for subpackages
  • Loading branch information
ChrisRackauckas authored Dec 22, 2024
2 parents f06cbf7 + 20b443d commit 3da7cb9
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,52 @@ on:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"

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:
TagBot-BoundaryValueDiffEq:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
- name: Tag BoundaryValueDiffEq
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}

TagBot-Subpackages:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- BoundaryValueDiffEqCore
- BoundaryValueDiffEqMIRK
- BoundaryValueDiffEqFIRK
- BoundaryValueDiffEqMIRKN
- BoundaryValueDiffEqAscher
- BoundaryValueDiffEqShooting
steps:
- name: Tag ${{ matrix.package }}
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: "lib/${{ matrix.package }}"

0 comments on commit 3da7cb9

Please sign in to comment.