From df77290939c18ec5104026058669ef002e0a9b03 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 18 Apr 2026 01:58:42 +0000 Subject: [PATCH 1/2] Initial plan From 9fbd0478d6bdc1078b6ed116f2894ddb3461ea1e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 18 Apr 2026 02:02:29 +0000 Subject: [PATCH 2/2] fix: trigger sign checker for owner and network metadata updates Agent-Logs-Url: https://github.com/TuneMe81/projects-info/sessions/352116b7-665f-4c4a-b7c1-56e34d540d64 Co-authored-by: TuneMe81 <188777417+TuneMe81@users.noreply.github.com> --- .github/workflows/sign_checker.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sign_checker.yaml b/.github/workflows/sign_checker.yaml index 17f81cf..09fa858 100644 --- a/.github/workflows/sign_checker.yaml +++ b/.github/workflows/sign_checker.yaml @@ -3,8 +3,9 @@ on: pull_request_target: types: [opened, edited, synchronize, reopened] paths: + - Projects-info/** - networks/** - + - assets/** jobs: check_pr: @@ -17,6 +18,7 @@ jobs: labels: | Signature Verified Signature Not-Verified + Logo Format Error - uses: actions-ecosystem/action-add-labels@v1 with: labels: Waiting Signature Verifier @@ -24,6 +26,9 @@ jobs: - name: Get changed files id: changed-files uses: tj-actions/changed-files@v45 + with: + base_sha: ${{ github.event.pull_request.base.sha }} + sha: ${{ github.event.pull_request.head.sha }} - name: Check signature uses: ./.github/actions/checker @@ -44,6 +49,11 @@ jobs: if: success() && steps.signature.outputs.verified == 'true' with: labels: Signature Verified + - name: Label when logo format error + uses: actions-ecosystem/action-add-labels@v1 + if: "!cancelled() && steps.signature.outputs.logoVerified == 'false'" + with: + labels: Logo Format Error - name: Label remove when disapproved uses: actions-ecosystem/action-add-labels@v1 if: failure() || steps.signature.outputs.verified == 'false'