From: Matthias Maier Date: Mon, 3 Jul 2023 22:24:40 +0000 (-0500) Subject: github: trigger on ready_for_review event X-Git-Tag: relicensing~777^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c66ee506651e3ad8300d645f2e16dce91f76399;p=dealii.git github: trigger on ready_for_review event --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9f06d7fe75..2f7f78e0f0 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,6 +1,12 @@ name: github-linux -on: [pull_request] +on: + pull_request: + types: + - opened + - reopened + - synchronize + - ready_for_review concurrency: group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 72e3264545..345361829b 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -1,6 +1,12 @@ name: github-OSX -on: [pull_request] +on: + pull_request: + types: + - opened + - reopened + - synchronize + - ready_for_review concurrency: group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/tidy.yml b/.github/workflows/tidy.yml index 90e7e7d446..a9fe923083 100644 --- a/.github/workflows/tidy.yml +++ b/.github/workflows/tidy.yml @@ -1,6 +1,12 @@ name: tidy -on: [pull_request] +on: + pull_request: + types: + - opened + - reopened + - synchronize + - ready_for_review concurrency: group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 466785326e..e2a7d9b0ec 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,6 +1,12 @@ name: github-windows -on: [pull_request] +on: + pull_request: + types: + - opened + - reopened + - synchronize + - ready_for_review concurrency: group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}