From fce17cbed382392106c895e0dca2bfdcb2d616a6 Mon Sep 17 00:00:00 2001 From: Jonas Kruckenberg Date: Wed, 14 Dec 2022 20:25:02 +0100 Subject: [PATCH] fix workflows --- .github/workflows/audit-javascript.yml | 4 ++-- .github/workflows/audit-rust.yml | 4 ++-- .github/workflows/format-javascript.yml | 4 ++-- .github/workflows/format-rust.yml | 4 ++-- .github/workflows/lint-javascript.yml | 4 ++-- .github/workflows/lint-rust.yml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/audit-javascript.yml b/.github/workflows/audit-javascript.yml index ebc33fb5..6fb6a60a 100644 --- a/.github/workflows/audit-javascript.yml +++ b/.github/workflows/audit-javascript.yml @@ -6,14 +6,14 @@ on: - cron: '0 0 * * *' push: branches: - - main + - dev paths: - '.github/workflows/audit-javascript.yml' - "**/pnpm-lock.yaml" - "**/package.json" pull_request: branches: - - main + - dev paths: - '.github/workflows/audit-javascript.yml' - "**/pnpm-lock.yaml" diff --git a/.github/workflows/audit-rust.yml b/.github/workflows/audit-rust.yml index d3640e65..ff1cccbf 100644 --- a/.github/workflows/audit-rust.yml +++ b/.github/workflows/audit-rust.yml @@ -6,14 +6,14 @@ on: - cron: '0 0 * * *' push: branches: - - main + - dev paths: - '.github/workflows/audit-rust.yml' - "**/Cargo.lock" - "**/Cargo.toml" pull_request: branches: - - main + - dev paths: - '.github/workflows/audit-rust.yml' - "**/Cargo.lock" diff --git a/.github/workflows/format-javascript.yml b/.github/workflows/format-javascript.yml index df0b3117..5c4e9f27 100644 --- a/.github/workflows/format-javascript.yml +++ b/.github/workflows/format-javascript.yml @@ -3,14 +3,14 @@ name: Format JavaScript on: push: branches: - - main + - dev paths: - '.github/workflows/format-javascript.yml' - 'plugins/*/guest-js/**' - '.prettierignore' pull_request: branches: - - main + - dev paths: - '.github/workflows/format-javascript.yml' - 'plugins/*/guest-js/**' diff --git a/.github/workflows/format-rust.yml b/.github/workflows/format-rust.yml index f31c50c7..c59e12c3 100644 --- a/.github/workflows/format-rust.yml +++ b/.github/workflows/format-rust.yml @@ -3,14 +3,14 @@ name: Format Rust on: push: branches: - - main + - dev paths: - '.github/workflows/format-rust.yml' - 'plugins/src/**' - "**/Cargo.lock" pull_request: branches: - - main + - dev paths: - '.github/workflows/format-rust.yml' - 'plugins/src/**' diff --git a/.github/workflows/lint-javascript.yml b/.github/workflows/lint-javascript.yml index 30bbc97d..9ba5f865 100644 --- a/.github/workflows/lint-javascript.yml +++ b/.github/workflows/lint-javascript.yml @@ -3,7 +3,7 @@ name: Lint JavaScript on: push: branches: - - main + - dev paths: - '.github/workflows/lint-javascript.yml' - 'plugins/*/guest-js/**' @@ -11,7 +11,7 @@ on: - '.eslintrc.json' pull_request: branches: - - main + - dev paths: - '.github/workflows/lint-javascript.yml' - 'plugins/*/guest-js/**' diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index 03f0fac7..a1643ce2 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -3,14 +3,14 @@ name: Lint Rust on: push: branches: - - main + - dev paths: - '.github/workflows/lint.yml' - 'plugins/src/**' - "**/Cargo.lock" pull_request: branches: - - main + - dev paths: - '.github/workflows/lint.yml' - 'plugins/src/**'