From dbb110a8ded2dbce53f9af68cb4a669896e469a3 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Mon, 27 Jan 2025 11:07:50 +0100 Subject: [PATCH 1/2] [CI] Add trigger on workflow_dispatch event for pages deployment and CodeQL jobs --- .github/workflows/codeql.yml | 1 + .github/workflows/pages.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 35035851c..e5848c597 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -3,6 +3,7 @@ name: "CodeQL" on: schedule: - cron: '0 0 * * *' + workflow_dispatch: jobs: analyze: diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 4ec3c8b3f..341278a45 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -4,6 +4,7 @@ on: push: branches: - master + workflow_dispatch: permissions: id-token: write From 673c6aa1fc0d7ea5a2bdf767eca1bd39e271dfbd Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Mon, 27 Jan 2025 13:23:18 +0100 Subject: [PATCH 2/2] Add CodeQL badge to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8f7301a0f..4e4631dee 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ [![Build application](https://github.com/learning-process/parallel_programming_course/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/learning-process/parallel_programming_course/actions/workflows/main.yml) [![Pages](https://github.com/learning-process/parallel_programming_course/actions/workflows/pages.yml/badge.svg?branch=master)](https://github.com/learning-process/parallel_programming_course/actions/workflows/pages.yml) +[![CodeQL](https://github.com/learning-process/parallel_programming_course/actions/workflows/codeql.yml/badge.svg?branch=master)](https://github.com/learning-process/parallel_programming_course/actions/workflows/codeql.yml) [![codecov](https://codecov.io/gh/learning-process/parallel_programming_course/graph/badge.svg?token=qCOtqeFyIz)](https://codecov.io/gh/learning-process/parallel_programming_course) # Parallel Programming Course