[Plugin][Bug]: The command "Purge depublished and deleted files" does not work #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add labels | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
jobs: | |
add_labels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.issue.title, '[Plugin][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]:') }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
labels: | | |
🐛 Bug | |
📫 Material Mkdocs Template | |