diff --git a/.github/workflows/rc.yml b/.github/workflows/rc.yml index 71979e9fa..5a82d686e 100644 --- a/.github/workflows/rc.yml +++ b/.github/workflows/rc.yml @@ -19,11 +19,13 @@ name: RC on: push: branches: - - '**' - - '!dependabot/**' + - "**" + - "!dependabot/**" tags: - - '*-rc*' + - "*-rc*" pull_request: + schedule: + - cron: "0 0 * * *" concurrency: group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} cancel-in-progress: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e486cefe1..4982c6b34 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,8 +19,8 @@ name: Release on: push: tags: - - '*' - - '!*-rc*' + - "*" + - "!*-rc*" concurrency: group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} cancel-in-progress: true