From 8271570402a5b198859fa7b1078377ef9b5eb8f8 Mon Sep 17 00:00:00 2001 From: Justin Figueroa Date: Wed, 18 Jan 2023 14:21:07 -0500 Subject: [PATCH] Fix #2225, Adds workflow_dispatch to all workflows --- .github/workflows/build-documentation.yml | 5 +++++ .github/workflows/code-coverage.yml | 4 ++++ .github/workflows/codeql-build.yml | 4 ++++ .github/workflows/format-check.yml | 4 ++++ .github/workflows/functional-tests.yml | 4 ++++ .github/workflows/static-analysis.yml | 4 ++++ 6 files changed, 25 insertions(+) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 5b00bd4cf..0b6b278d7 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -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 diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index b7180a80f..4c335ac1a 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -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 diff --git a/.github/workflows/codeql-build.yml b/.github/workflows/codeql-build.yml index 00a86762d..b157b87bb 100644 --- a/.github/workflows/codeql-build.yml +++ b/.github/workflows/codeql-build.yml @@ -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: diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index bf12f09e2..d52a065e0 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -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: diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index c989c6517..5d4974edd 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -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 diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 017f54bb8..d24c93fe7 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -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: