1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

chore: add paths-ignore to more workflows (#4041)

### What
To reduce the work needed, this PR adds paths-ignore to avoid building
unnecessary workflows.

Co-authored-by: Gastón Fournier <gaston@getunleash.io>
This commit is contained in:
Christopher Kolstad 2023-07-05 14:29:37 +02:00 committed by GitHub
parent d104571b20
commit 9f5b7b610a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,9 @@ name: PR -> Build & Lint
on: on:
pull_request: pull_request:
paths-ignore:
- frontend/**
- website/**
jobs: jobs:
build: build:

View File

@ -2,6 +2,9 @@ name: PR -> Test & Coverage
on: on:
pull_request: pull_request:
paths-ignore:
- frontend/**
- website/**
jobs: jobs:
build: build:

View File

@ -4,6 +4,8 @@ on:
push: push:
branches: branches:
- main - main
paths-ignore:
- website/**
tags: tags:
- 'v*' - 'v*'
workflow_dispatch: workflow_dispatch: