generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 38
38 lines (37 loc) · 1.26 KB
/
add_labels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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