From 61eb82cda6e114140e4a4e257e9129fe99222ba7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nurzhan=20Sak=C3=A9n?= Date: Mon, 20 May 2024 13:33:58 +0400 Subject: [PATCH] Stop labeling issues (#488) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nurzhan Sakén --- .github/workflows/issue-add-labels.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/issue-add-labels.yml diff --git a/.github/workflows/issue-add-labels.yml b/.github/workflows/issue-add-labels.yml deleted file mode 100644 index bf47eb416..000000000 --- a/.github/workflows/issue-add-labels.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Label the documentation issues -on: - issues: - types: [opened] -jobs: - label_issues: - runs-on: ubuntu-latest - permissions: - issues: write - steps: - - uses: actions/github-script@v6 - with: - script: | - github.rest.issues.addLabels({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - labels: ["iroha2", "documentation"] - })