From fc3cc9c27f761ccf36cb20e9c85e5c522744f015 Mon Sep 17 00:00:00 2001 From: Jyrki Gadinger Date: Mon, 15 Sep 2025 11:53:32 +0200 Subject: [PATCH 1/2] fix(needsinfohelper): use correct single-quote string literals this workflow syntax is something else... Signed-off-by: Jyrki Gadinger --- .github/workflows/needsinfohelper.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/needsinfohelper.yml b/.github/workflows/needsinfohelper.yml index 8c4c82eb1a..29f2504f7b 100644 --- a/.github/workflows/needsinfohelper.yml +++ b/.github/workflows/needsinfohelper.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 if: | - github.event.comment.user.type != "Bot" && + github.event.comment.user.type != 'Bot' && !contains(fromJSON('["camilasan", "i2h3", "mgallien", "nilsding", "Rello"]'), github.event.comment.user.login) with: labels: 'needs info' From 9c5879601358153274f063dfa044d7ac9893f3ce Mon Sep 17 00:00:00 2001 From: Jyrki Gadinger Date: Mon, 15 Sep 2025 12:27:29 +0200 Subject: [PATCH 2/2] chore: add @Aiiaiiio to CODEOWNERS Signed-off-by: Jyrki Gadinger --- .github/CODEOWNERS | 2 +- .github/workflows/needsinfohelper.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a887d67ba0..2426578b5e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ # SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors # SPDX-License-Identifier: GPL-2.0-or-later -* @camilasan @i2h3 @mgallien @nilsding +* @Aiiaiiio @camilasan @i2h3 @mgallien @nilsding diff --git a/.github/workflows/needsinfohelper.yml b/.github/workflows/needsinfohelper.yml index 29f2504f7b..4ee83a8c89 100644 --- a/.github/workflows/needsinfohelper.yml +++ b/.github/workflows/needsinfohelper.yml @@ -11,7 +11,7 @@ jobs: - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 if: | github.event.comment.user.type != 'Bot' && - !contains(fromJSON('["camilasan", "i2h3", "mgallien", "nilsding", "Rello"]'), github.event.comment.user.login) + !contains(fromJSON('["Aiiaiiio", "camilasan", "i2h3", "mgallien", "nilsding", "Rello"]'), github.event.comment.user.login) with: labels: 'needs info' github_token: ${{ secrets.GITHUB_TOKEN }}