From 81a4cd79549713a8739740dfdca04a16f83fa1c7 Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 29 Mar 2024 21:38:25 +0800 Subject: [PATCH] ci: run on all changes --- .github/workflows/benchmark.yml | 10 ++++------ .github/workflows/ci.yml | 4 ---- .github/workflows/codecov.yml | 8 +++----- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7445b538..1757b376 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -4,15 +4,13 @@ on: workflow_dispatch: pull_request: types: [opened, synchronize] - paths: - - '**/*.rs' - - 'Cargo.lock' + paths-ignore: + - '**/*.md' push: branches: - main - paths: - - '**/*.rs' - - 'Cargo.lock' + paths-ignore: + - '**/*.md' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f3398ec..2a5b92d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,15 +6,11 @@ on: types: [opened, synchronize] paths-ignore: - '**/*.md' - - '**/*.yml' - - '!.github/workflows/ci.yml' push: branches: - main paths-ignore: - '**/*.md' - - '**/*.yml' - - '!.github/workflows/ci.yml' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 77493c67..e1692512 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -5,14 +5,12 @@ on: pull_request: types: [opened, synchronize] paths-ignore: - - '**.rs' - - '.github/workflows/codecov.yml' + - '**/*.md' push: branches: - main - paths: - - '**.rs' - - '.github/workflows/codecov.yml' + paths-ignore: + - '**/*.md' concurrency: group: ${{ github.workflow }}-${{ github.ref }}