@cryptotaxi247 / infra / commits / 30242fa0

Fix path condition for dnscontrol action triggers

Martin Weinelt committed Mar 30, 2025 at 19:18 UTC 30242fa041d0b7573f8de72e8539c44085566001
2 files changed +2 -2
.github/workflows/dns-apply.yml
+1 -1
@@ -6,7 +6,7 @@ on:
6 branches:
7 - main
8 paths:
9 - - dns/
9 + - 'dns/**'
10 workflow_dispatch:
11
12 permissions: {}
.github/workflows/dns-preview.yml
+1 -1
@@ -4,7 +4,7 @@ name: Test/Preview DNS changes
4 on:
5 pull_request:
6 paths:
7 - - dns/
7 + - 'dns/**'
8
9 permissions: {}
10