From 8d2906ef2e0937920018e82c724eb9b78888c0a37e212b5d895580e28db296cb Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Thu, 9 Oct 2025 10:03:22 +0200 Subject: [PATCH 1/2] use packagehub- as patch insert prefix --- .gitea/workflows/patchinfo_numberator.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/patchinfo_numberator.yaml b/.gitea/workflows/patchinfo_numberator.yaml index 80cda5b..aa377c9 100644 --- a/.gitea/workflows/patchinfo_numberator.yaml +++ b/.gitea/workflows/patchinfo_numberator.yaml @@ -21,6 +21,8 @@ jobs: - name: Update all new _patchinfo files uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/patchinfo-numbering-action@v0 + with: + prefix: packagehub- - name: Get last commit author id: last-commit run: | -- 2.51.1 From c31a6f72167a840d17e92533365f38e72612e62f37be6ec1c8ebf12db9a2f75a Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Thu, 9 Oct 2025 10:13:37 +0200 Subject: [PATCH 2/2] simplify uses as we do not need read perms --- .gitea/workflows/patchinfo_numberator.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/patchinfo_numberator.yaml b/.gitea/workflows/patchinfo_numberator.yaml index aa377c9..d7a5903 100644 --- a/.gitea/workflows/patchinfo_numberator.yaml +++ b/.gitea/workflows/patchinfo_numberator.yaml @@ -14,13 +14,13 @@ jobs: zypper in -y go # Generic action from GitHub to clone the product git repo - name: Checkout product - uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/github-actions-checkout@v4 + uses: https://src.opensuse.org/actions/github-actions-checkout@v4 with: token: ${{ secrets.REPO_WRITE }} repo-sha256: true - name: Update all new _patchinfo files - uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/patchinfo-numbering-action@v0 + uses: https://src.opensuse.org/actions/patchinfo-numbering-action@v0 with: prefix: packagehub- - name: Get last commit author @@ -28,7 +28,7 @@ jobs: run: | echo "author=$(git log -1 --pretty='%an <%ae>')" >> $GITHUB_OUTPUT - name: Commit changes back - uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/stefanzweifel-git-auto-commit-action@v5 + uses: https://src.opensuse.org/actions/stefanzweifel-git-auto-commit-action@v5 with: commit_user_name: gitea-actions-autobuild commit_user_email: autobuild+gitea@opensuse.org -- 2.51.1