From 89d0ee1f583ba7bf5c791a3445ce346d9208c968 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Wed, 25 Oct 2023 00:53:50 +0200 Subject: [PATCH] Actualiser .forgejo/workflows/ci.yaml --- .forgejo/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 4ea74bf..2c5345b 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -15,13 +15,13 @@ jobs: shell: bash run: | cd dns - files=$(git diff-tree --no-commit-id --name-only -r master | grep "*.zone") + files=$(git diff-tree --no-commit-id --name-only -r main | grep "*.zone") for file in $files do domain=$(echo $file | sed "s/.zone//g") /usr/sbin/named-checkzone "$domain" "$file" || exit 2 done - echo $(git diff-tree --no-commit-id --name-only -r master | grep "*.zone") > /var/cache/bind/.modified + echo $(git diff-tree --no-commit-id --name-only -r main | grep "*.zone") > /var/cache/bind/.modified - run: echo "Job ended with status '${{ job.status }}'." sync: