From ee0325426dd2a84e63e81433d7d5147ebe6d0775 Mon Sep 17 00:00:00 2001 From: Mara-Li Date: Mon, 30 Oct 2023 19:25:49 +0100 Subject: [PATCH] chore(issue): edit add-labels to set on FR/Bug --- .github/workflows/add_labels.yml | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/.github/workflows/add_labels.yml b/.github/workflows/add_labels.yml index df3260df..d8d64577 100644 --- a/.github/workflows/add_labels.yml +++ b/.github/workflows/add_labels.yml @@ -8,31 +8,14 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions-ecosystem/action-add-labels@v1 - if: ${{ startsWith(github.event.issue.title, '[Plugin][FR]:') }} + if: ${{ startsWith(github.event.issue.title, '[FR]:') }} with: github_token: ${{ secrets.GITHUB_TOKEN }} labels: | ✨ Enhancement - 💎 Obsidian Github Publisher - uses: actions-ecosystem/action-add-labels@v1 - if: ${{ startsWith(github.event.issue.title, '[MKDOCS][FR]:') }} - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - labels: | - ✨ Enhancement - 📫 Material Mkdocs Template - - uses: actions-ecosystem/action-add-labels@v1 - if: ${{ startsWith(github.event.issue.title, '[Plugin][Bug]:') }} - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - labels: | - 🐛 Bug - 💎 Obsidian Github Publisher - - uses: actions-ecosystem/action-add-labels@v1 - if: ${{ startsWith(github.event.issue.title, '[MKDOCS][Bug]:') }} + if: ${{ startsWith(github.event.issue.title, '[Bug]:') }} with: github_token: ${{ secrets.GITHUB_TOKEN }} labels: | 🐛 Bug - 📫 Material Mkdocs Template -