From a230886c40baca97a569fa3c06c3d850cdb024d0 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Mon, 11 Mar 2024 19:50:57 +0100 Subject: [PATCH] fix ci triggers --- .github/workflows/auth-service-cd.yml | 2 +- .github/workflows/auth-service-ci.yml | 5 ++++- .github/workflows/backend-ci.yml | 4 +++- .github/workflows/frontend-ci.yml | 5 ++++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auth-service-cd.yml b/.github/workflows/auth-service-cd.yml index 206f9fb..5fbbfad 100644 --- a/.github/workflows/auth-service-cd.yml +++ b/.github/workflows/auth-service-cd.yml @@ -10,7 +10,7 @@ on: jobs: docker: - name: Build and Push Backend image to Docker Hub + name: Build and Push Auth-service image to Docker Hub runs-on: ubuntu-latest steps: - name: Set up QEMU diff --git a/.github/workflows/auth-service-ci.yml b/.github/workflows/auth-service-ci.yml index 96e48a7..36749d8 100644 --- a/.github/workflows/auth-service-ci.yml +++ b/.github/workflows/auth-service-ci.yml @@ -3,7 +3,10 @@ on: push: paths: - "auth-service/**" - + pull_request: + paths: + - "auth-service/**" + jobs: lint: uses: ./.github/workflows/go_lint.yml diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index a06f224..5ef7000 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -3,7 +3,9 @@ on: push: paths: - "backend/**" - + pull_request: + paths: + - "backend/**" jobs: lint: uses: ./.github/workflows/go_lint.yml diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index be393f0..6ca1c52 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -3,7 +3,10 @@ on: push: paths: - "frontend/**" - + pull_request: + paths: + - "frontend/**" + jobs: lint: uses: ./.github/workflows/svelte_lint.yml