Skip to content

Commit

Permalink
Add workflow_dispatch trigger for all workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aobolensk committed Jan 30, 2025
1 parent 062e555 commit e12e7e9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: "CodeQL"
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:

jobs:
analyze:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Lint

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

jobs:
linter:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Nightly
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:

jobs:
pypy-tests:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test coverage

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

jobs:
codecov:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

jobs:
tests:
Expand Down

0 comments on commit e12e7e9

Please sign in to comment.