Skip to content

Commit

Permalink
Merge pull request #11 from rohanpm/workflow-dispatch
Browse files Browse the repository at this point in the history
Allow consistent workflow_dispatch for all workflows
  • Loading branch information
rohanpm authored May 15, 2023
2 parents a18439f + adee89f commit 0301742
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip-compile-submit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
on:
workflow_dispatch: {}
workflow_dispatch:
schedule:
- cron: "20 20 * * 2"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-compile.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
on:
workflow_dispatch: {}
workflow_dispatch:
schedule:
- cron: "20 20 * * 0"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Release to PyPI

on:
workflow_dispatch:
push:
branches: [main]

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: tox

on:
workflow_dispatch:
workflow_call:
pull_request:
branches: [main]
workflow_call:

jobs:
tox:
Expand Down

0 comments on commit 0301742

Please sign in to comment.