Skip to content

Commit

Permalink
Fix #2225, Adds workflow_dispatch to all workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
chillfig committed Jan 19, 2023
1 parent f6432f5 commit dae6adc
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 0 deletions.
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:
# * 11:59 PM UTC every Sunday
- cron: '59 23 * * 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:59 PM UTC every Sunday
- cron: '59 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:59 PM UTC every Sunday
- cron: '59 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:59 PM UTC every Sunday
- cron: '59 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:59 PM UTC every Sunday
- cron: '59 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

0 comments on commit dae6adc

Please sign in to comment.