From b6ba028b10755e780fed53c2d407903c99388da2 Mon Sep 17 00:00:00 2001 From: kumvijaya Date: Tue, 21 May 2024 16:52:42 +0530 Subject: T6357: added triggers --- .github/workflows/check-stale.yml | 1 + .github/workflows/codeql.yml | 1 + .github/workflows/linit-j2.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/check-stale.yml b/.github/workflows/check-stale.yml index b5ec533..59d25a1 100644 --- a/.github/workflows/check-stale.yml +++ b/.github/workflows/check-stale.yml @@ -2,6 +2,7 @@ name: "Issue and PR stale management" on: schedule: - cron: "0 0 * * *" + workflow_dispatch: permissions: pull-requests: write diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f647278..a4fc39e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -8,6 +8,7 @@ on: branches: [ "current" ] schedule: - cron: '22 10 * * 0' + workflow_dispatch: permissions: actions: read diff --git a/.github/workflows/linit-j2.yml b/.github/workflows/linit-j2.yml index 364a65a..c4f4132 100644 --- a/.github/workflows/linit-j2.yml +++ b/.github/workflows/linit-j2.yml @@ -7,6 +7,7 @@ on: - current - crux - equuleus + workflow_dispatch: permissions: pull-requests: write -- cgit v1.2.3 From 2b3e4565b211a5dfbe78e0559f7e1c2947d63175 Mon Sep 17 00:00:00 2001 From: kumvijaya Date: Tue, 21 May 2024 17:42:26 +0530 Subject: T6357: added main --- .github/labeler.yml | 3 +++ .github/workflows/add-pr-labels.yml | 1 + .github/workflows/chceck-pr-message.yml | 1 + .github/workflows/check-unused-imports.yml | 1 + .github/workflows/codeql.yml | 2 +- .github/workflows/linit-j2.yml | 1 + 6 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index e0b9ee4..0852982 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -10,3 +10,6 @@ crux: sagitta: - any: - base-branch: 'sagitta' +main: + - any: + - base-branch: 'main' diff --git a/.github/workflows/add-pr-labels.yml b/.github/workflows/add-pr-labels.yml index 1723cce..72dd838 100644 --- a/.github/workflows/add-pr-labels.yml +++ b/.github/workflows/add-pr-labels.yml @@ -4,6 +4,7 @@ name: Add pull request labels on: pull_request_target: branches: + - main - current - crux - equuleus diff --git a/.github/workflows/chceck-pr-message.yml b/.github/workflows/chceck-pr-message.yml index e7e4569..733a639 100644 --- a/.github/workflows/chceck-pr-message.yml +++ b/.github/workflows/chceck-pr-message.yml @@ -4,6 +4,7 @@ name: Check pull request message format on: pull_request: branches: + - main - current - crux - equuleus diff --git a/.github/workflows/check-unused-imports.yml b/.github/workflows/check-unused-imports.yml index aada264..7ec4099 100644 --- a/.github/workflows/check-unused-imports.yml +++ b/.github/workflows/check-unused-imports.yml @@ -2,6 +2,7 @@ name: Check for unused imports using Pylint on: pull_request: branches: + - main - current - sagitta workflow_dispatch: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a4fc39e..95baaf5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -2,7 +2,7 @@ name: "Perform CodeQL Analysis" on: push: - branches: [ "current", "sagitta", "equuleus" ] + branches: [ "main", "current", "sagitta", "equuleus" ] pull_request: # The branches below must be a subset of the branches above branches: [ "current" ] diff --git a/.github/workflows/linit-j2.yml b/.github/workflows/linit-j2.yml index c4f4132..7c0f667 100644 --- a/.github/workflows/linit-j2.yml +++ b/.github/workflows/linit-j2.yml @@ -4,6 +4,7 @@ name: J2 Lint on: pull_request: branches: + - main - current - crux - equuleus -- cgit v1.2.3 From 0a23dd70e53313771297d16c272de274bf383afb Mon Sep 17 00:00:00 2001 From: kumvijaya Date: Tue, 21 May 2024 20:31:11 +0530 Subject: T6357: added main --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 95baaf5..f493777 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -5,7 +5,7 @@ on: branches: [ "main", "current", "sagitta", "equuleus" ] pull_request: # The branches below must be a subset of the branches above - branches: [ "current" ] + branches: [ "main", "current" ] schedule: - cron: '22 10 * * 0' workflow_dispatch: -- cgit v1.2.3