From c2435ee92be0d8aebdb907994a5d22e2eec06276 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Tue, 12 Dec 2023 14:46:36 +0100 Subject: [PATCH] fix(workflows): ??? --- .forgejo/workflows/npins.yaml | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/npins.yaml b/.forgejo/workflows/npins.yaml index 197d286..abf1a82 100644 --- a/.forgejo/workflows/npins.yaml +++ b/.forgejo/workflows/npins.yaml @@ -1,8 +1,8 @@ name: npins update on: schedule: - # Run at 11 o'clock every day - - cron: "37 14 * * *" + # Run at 11 o'clock every wednesday + - cron: "00 11 * * 3" jobs: npins_update: @@ -12,6 +12,8 @@ jobs: run: apt-get update && apt-get install sudo - uses: actions/checkout@v3 + with: + depth: 0 - uses: https://github.com/cachix/install-nix-action@v22 with: @@ -25,21 +27,31 @@ jobs: run: | npins update - if [ ! -z "$(git diff --name-only HEAD)" ]; then + if [ ! -z "$(git diff --name-only)" ]; then echo "[+] Changes detected, pushing updates." + git switch -C npins-update + git add npins + + git config user.name "DGNum Chores" + git config user.email "tech@dgnum.eu" + git commit --message "chore(npins): Update" - git push --set-upstream chores/npins-update --force + git push --set-upstream origin npins-update --force # Connect to the server with the cli tea login add \ -n dgnum-chores \ - -t {{ secrets.TEA_DGNUM_CHORES_TOKEN }} \ + -t '${{ secrets.TEA_DGNUM_CHORES_TOKEN }}' \ -u https://git.dgnum.eu # Create a pull request if needed # i.e. no PR with the same title exists - tea pulls ls -f='title,author' -o simple | grep -q 'chore(npins): Update dgnum-chores') \ - && tea pulls create -D "Automatic npins update" -t "chore(npins): Update" --head chores/npins-update + if [ -z "$(tea pr ls -f='title,author' -o simple | grep 'chore(npins): Update dgnum-chores')" ]; then + tea pr create \ + --description "Automatic npins update" \ + --title "chore(npins): Update" \ + --head npins-update + fi fi