Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #2225, Adds workflow_dispatch to all workflows #2236

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: cFS Documentation and Guides
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 10:45 PM UTC every Sunday
- cron: '45 22 * * 0'


jobs:
# Checks for duplicate actions. Skips push actions if there is a matching or
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: "Code Coverage Analysis"
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 11:00 PM UTC every Sunday
- cron: '0 23 * * 0'

env:
SIMULATION: native
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: "CodeQL Analysis"
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 11:15 PM UTC every Sunday
- cron: '15 23 * * 0'

jobs:
codeql:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ name: Format Check
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 11:30 PM UTC every Sunday
- cron: '30 23 * * 0'

jobs:
format-check:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: "Functional Test"
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 11:45 PM UTC every Sunday
- cron: '45 23 * * 0'

env:
SIMULATION: native
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ name: Static Analysis
on:
push:
pull_request:
workflow_dispatch:
schedule:
# 11:59 PM UTC every Sunday
- cron: '59 23 * * 0'

jobs:
static-analysis:
Expand Down