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 -