From 1b17c6e8f2bd395ea07c1eef1ad19295ae08c1fa Mon Sep 17 00:00:00 2001 From: stnolting Date: Sat, 5 Oct 2024 16:02:36 +0200 Subject: [PATCH] [.github] cleanup workflow triggers to reduce actual runs --- .github/workflows/Documentation.yml | 7 +++++-- .github/workflows/Processor.yml | 7 ------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 95dffa862..78cc35738 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -1,13 +1,16 @@ -name: 'Documentation' +name: Documentation on: push: + paths: + - 'docs/**' pull_request: + paths: + - 'docs/**' workflow_dispatch: jobs: - doxygen: runs-on: ubuntu-latest name: 'SW Framework' diff --git a/.github/workflows/Processor.yml b/.github/workflows/Processor.yml index 3e53d8b2f..44d41ba5d 100644 --- a/.github/workflows/Processor.yml +++ b/.github/workflows/Processor.yml @@ -3,25 +3,18 @@ name: Processor on: push: branches: - - main - paths: - 'rtl/**' - 'sw/**' - 'sim/**' - - '.github/workflows/**' pull_request: - branches: - - main paths: - 'rtl/**' - 'sw/**' - 'sim/**' - - '.github/workflows/**' workflow_dispatch: jobs: - Software: runs-on: ubuntu-latest