From 672774c20144fe61645a2150801c4c26bb530dcc Mon Sep 17 00:00:00 2001 From: aditya singh rathore Date: Wed, 5 Nov 2025 14:31:31 +0530 Subject: [PATCH] removed hacktoberfest from the workflow --- .github/workflows/autolabler.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autolabler.yml b/.github/workflows/autolabler.yml index c93a9e50..9163d979 100644 --- a/.github/workflows/autolabler.yml +++ b/.github/workflows/autolabler.yml @@ -24,10 +24,10 @@ jobs: await github.rest.issues.addLabels({ ...context.repo, issue_number: prNumber, - labels: ["recode","hacktoberfest-accepted"] + labels: ["recode"] }); - console.log(`Added labels [recode, hacktoberfest-accepted] to PR #${prNumber}`); + console.log(`Added labels [recode] to PR #${prNumber}`); - name: Add labels to Issue if: github.event_name == 'issues' @@ -39,10 +39,10 @@ jobs: await github.rest.issues.addLabels({ ...context.repo, issue_number: issueNumber, - labels: ["recode", "level 1", "hacktoberfest-accepted"] + labels: ["recode", "level 1"] }); - console.log(`Added labels [recode, level 1, hacktoberfest-accepted] to Issue #${issueNumber}`); + console.log(`Added labels [recode, level 1] to Issue #${issueNumber}`); - name: Set Issue Type to Bug if: github.event_name == 'issues'