From 2a3ee1ec96142a4e0edfdf8543d4baf40b201efc Mon Sep 17 00:00:00 2001 From: emil Date: Sat, 27 Jun 2026 22:06:47 +0000 Subject: [PATCH] DEVX-89: fix: add --auto-login to all notify_failure calls in workflows --- .gitea/workflows/build-images.yml | 3 ++- .gitea/workflows/post-merge.yml | 18 ++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build-images.yml b/.gitea/workflows/build-images.yml index 4b330d6..49903f5 100644 --- a/.gitea/workflows/build-images.yml +++ b/.gitea/workflows/build-images.yml @@ -108,7 +108,8 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "build-images/build-and-push" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login cleanup: needs: [build-and-push] diff --git a/.gitea/workflows/post-merge.yml b/.gitea/workflows/post-merge.yml index 0ca2b15..1af77ab 100644 --- a/.gitea/workflows/post-merge.yml +++ b/.gitea/workflows/post-merge.yml @@ -122,7 +122,8 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "post-merge/release" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login publish: needs: [release] @@ -160,7 +161,8 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "post-merge/publish" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login sync-wiki: needs: [detect-type] @@ -195,7 +197,8 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "post-merge/sync-wiki" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login badges: needs: [detect-type] @@ -235,7 +238,8 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "post-merge/badges" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login vikunja: needs: [detect-type] @@ -271,7 +275,8 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "post-merge/vikunja" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login configure-repo: needs: [detect-type] @@ -304,4 +309,5 @@ jobs: --repo "${{ github.repository }}" \ --run-id "${{ github.run_id }}" \ --workflow "post-merge/configure-repo" \ - --commit "${{ github.sha }}" + --commit "${{ github.sha }}" \ + --auto-login