diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 0d7d2929000b..6a9f64e88bdb 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -3,7 +3,9 @@ name: Clippy Test on: push: # Ignore bors branches, since they are covered by `clippy_bors.yml` - branches-ignore: [auto, try] + branches-ignore: + - auto + - try # Don't run Clippy tests, when only textfiles were modified paths-ignore: - 'COPYRIGHT' diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml index d147e0790a0a..f77350f09b94 100644 --- a/.github/workflows/clippy_bors.yml +++ b/.github/workflows/clippy_bors.yml @@ -2,7 +2,9 @@ name: Clippy Test (bors) on: push: - branches: [auto, try] + branches: + - auto + - try env: RUST_BACKTRACE: 1 diff --git a/.github/workflows/clippy_dev.yml b/.github/workflows/clippy_dev.yml index d6f5db014a43..9ca2e630cbbb 100644 --- a/.github/workflows/clippy_dev.yml +++ b/.github/workflows/clippy_dev.yml @@ -2,7 +2,9 @@ name: Clippy Dev Test on: push: - branches: [auto, try] + branches: + - auto + - try pull_request: # Only run on paths, that get checked by the clippy_dev tool paths: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6f79891358eb..93300b6e124f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,9 +2,11 @@ name: Deploy on: push: - branches: master + branches: + - master release: - types: [created] + types: + - created env: TARGET_BRANCH: 'gh-pages' diff --git a/.github/workflows/remark.yml b/.github/workflows/remark.yml index 3544053d399a..cc175e8bf247 100644 --- a/.github/workflows/remark.yml +++ b/.github/workflows/remark.yml @@ -2,7 +2,9 @@ name: Remark on: push: - branches: [auto, try] + branches: + - auto + - try pull_request: paths: - '**.md'