commit 4431be86714611c1eaa06a88d296931b5dbbe582
parent de8f2bd3ddb9be499f66a1dd9e6f1de241f7c65d
Author: MTRNord <mtrnord1@gmail.com>
Date: Tue, 13 Jun 2023 20:06:25 +0200
Make changes more specific
Diffstat:
4 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/build_chatwoot.yaml b/.github/workflows/build_chatwoot.yaml
@@ -4,6 +4,9 @@ on:
push:
branches:
- "main"
+ paths:
+ - "chatwoot/**"
+ - ".github/**"
workflow_dispatch:
jobs:
diff --git a/.github/workflows/build_chatwoot_release.yaml b/.github/workflows/build_chatwoot_release.yaml
@@ -1,9 +1,12 @@
-name: Publish Synapse Docker image on release
+name: Publish chatwoot Docker image on release
on:
push:
tags:
- - synapse-**
+ - chatwoot-**
+ paths:
+ - "chatwoot/**"
+ - ".github/**"
workflow_dispatch:
jobs:
@@ -12,7 +15,7 @@ jobs:
contents: read
packages: write
id-token: write
- name: Push synapse image to repo
+ name: Push chatwoot image to repo
runs-on: ubuntu-latest
steps:
- name: Check out the repo
diff --git a/.github/workflows/build_synapse.yaml b/.github/workflows/build_synapse.yaml
@@ -4,6 +4,9 @@ on:
push:
branches:
- "main"
+ paths:
+ - "synapse/**"
+ - ".github/**"
workflow_dispatch:
jobs:
diff --git a/.github/workflows/build_synapse_release.yaml b/.github/workflows/build_synapse_release.yaml
@@ -4,6 +4,9 @@ on:
push:
tags:
- synapse-**
+ paths:
+ - "synapse/**"
+ - ".github/**"
workflow_dispatch:
jobs: