Skip to content

Commit

Permalink
Add manual workflow dispatch to gh workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
saqadri committed Feb 19, 2025
1 parent 0787641 commit 0af469c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
paths:
- "pyproject.toml"
workflow_dispatch: # Enables manual runs

jobs:
create-tag:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
tags:
- "v*" # Triggers on tags like v1.2.3

workflow_dispatch: # Enables manual runs

jobs:
checks:
uses: ./.github/workflows/checks.yml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ on:
pull_request_target:
types: [opened, reopened, synchronize]

workflow_dispatch: # Enables manual runs

permissions:
contents: read

Expand Down

0 comments on commit 0af469c

Please sign in to comment.