Skip to content

Commit

Permalink
Add workflow_dispatch to GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamghill committed Jul 26, 2024
1 parent 0d7b5d9 commit 723350d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
workflow_dispatch:

jobs:
generate-coverage:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/js.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: JavaScript
on: [push]
on:
push:
workflow_dispatch:

jobs:
test:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Python
on: [push]
on:
push:
workflow_dispatch:

jobs:
test:
Expand Down

0 comments on commit 723350d

Please sign in to comment.