From d90c4a1247b252b400ecb43d517049f2926df5f3 Mon Sep 17 00:00:00 2001 From: Alex Onyx <130896629+al-onyxprotocol@users.noreply.github.com> Date: Thu, 1 Jan 2026 19:27:34 +0300 Subject: [PATCH 1/5] Update labels.json Add "Bounty" label --- labels.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/labels.json b/labels.json index 73a08aa..acc3fe5 100644 --- a/labels.json +++ b/labels.json @@ -268,5 +268,10 @@ "name": "wontfix", "color": "ffffff", "description": "This will not be worked on" + }, + { + "name": "Bounty 💰", + "color": "E6B800", + "description": "Task with a reward for successful completion (paid after PR is merged)" } ] From aed8060ff21fc8243b5277dcdefd3f4922c45b6b Mon Sep 17 00:00:00 2001 From: Serg Date: Fri, 2 Jan 2026 12:40:18 +0700 Subject: [PATCH 2/5] chore: log token length --- .github/workflows/sync-labels.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 6e42b1f..5b5b15f 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -63,6 +63,10 @@ jobs: "Adamant-im/adamant-mixer" "Adamant-im/adamant-watchbot" ) + + echo "LABELS_SYNC_TOKEN length: ${#LABELS_SYNC_TOKEN}" + + for repo in "${REPOS[@]}"; do echo "Syncing $repo" github-label-sync --access-token $LABELS_SYNC_TOKEN --labels labels.json $repo From ef146e788233d8963dab88f5af0447f5fa0f34c1 Mon Sep 17 00:00:00 2001 From: Serg Date: Fri, 2 Jan 2026 12:42:28 +0700 Subject: [PATCH 3/5] chore: remove check log token length --- .github/workflows/sync-labels.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 5b5b15f..a4b90f1 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -63,10 +63,7 @@ jobs: "Adamant-im/adamant-mixer" "Adamant-im/adamant-watchbot" ) - - echo "LABELS_SYNC_TOKEN length: ${#LABELS_SYNC_TOKEN}" - - + for repo in "${REPOS[@]}"; do echo "Syncing $repo" github-label-sync --access-token $LABELS_SYNC_TOKEN --labels labels.json $repo From 25b367784bd3ff320db18aa2a81ad604baff40b4 Mon Sep 17 00:00:00 2001 From: Serg Date: Fri, 2 Jan 2026 12:48:05 +0700 Subject: [PATCH 4/5] chore: add temp branches rule --- .github/workflows/sync-labels.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index a4b90f1..bcc4aeb 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -3,6 +3,8 @@ name: Sync labels on: workflow_dispatch: push: + branches: + - feat/add-bounty-label paths: - "labels.json" From a8adc74f6638efc663f258a0a8588d3f171d5575 Mon Sep 17 00:00:00 2001 From: Serg Date: Fri, 2 Jan 2026 13:12:34 +0700 Subject: [PATCH 5/5] chore: check LABELS_SYNC_TOKEN length --- .github/workflows/sync-labels.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index bcc4aeb..0c87822 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -65,7 +65,10 @@ jobs: "Adamant-im/adamant-mixer" "Adamant-im/adamant-watchbot" ) - + + echo "LABELS_SYNC_TOKEN length: ${#LABELS_SYNC_TOKEN}" + + for repo in "${REPOS[@]}"; do echo "Syncing $repo" github-label-sync --access-token $LABELS_SYNC_TOKEN --labels labels.json $repo