You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,9 @@ ___
25
25
26
26
### YAML configuration
27
27
28
-
In the repository where you want to perform this action, create the YAML file `.github/labels.yml` (you can also set a [custom filename](#customizing)) that looks like:
28
+
In the repository where you want to perform this action, create the YAML file
29
+
`.github/labels.yml` (you can also set a [custom filename](#customizing)) that
30
+
looks like:
29
31
30
32
```yaml
31
33
- name: "bug"
@@ -71,19 +73,17 @@ jobs:
71
73
uses: actions/checkout@v3
72
74
-
73
75
name: Run Labeler
74
-
if: success()
75
76
uses: crazy-max/ghaction-github-labeler@v4
76
77
with:
77
78
github-token: ${{ secrets.GITHUB_TOKEN }}
78
79
yaml-file: .github/labels.yml
79
-
skip-delete: false
80
-
dry-run: false
81
80
exclude: |
82
81
help*
83
82
*issue
84
83
```
85
84
86
-
With this workflow, the YAML configuration above on a [fresh repository](samples/original.yml), this will:
85
+
With this workflow, the YAML configuration above on a [fresh repository](samples/original.yml),
86
+
this will:
87
87
88
88
* Skip `bug` (because same `color` and `description`)
89
89
* Skip `documentation` (because same `color` and `description`)
@@ -101,13 +101,12 @@ With this workflow, the YAML configuration above on a [fresh repository](samples
0 commit comments