Skip to content

Commit a458dfd

Browse files
committed
README.md: drop trailing whitespace
1 parent 3104dc5 commit a458dfd

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The match object allows control over the matching options. You can specify the l
3737

3838
The base match object is defined as:
3939
```yml
40-
- changed-files:
40+
- changed-files:
4141
- any-glob-to-any-file: ['list', 'of', 'globs']
4242
- any-glob-to-all-files: ['list', 'of', 'globs']
4343
- all-globs-to-any-file: ['list', 'of', 'globs']
@@ -132,7 +132,7 @@ Documentation:
132132
- changed-files:
133133
- any-glob-to-any-file: ['docs/*', 'guides/*']
134134
135-
# Add 'Documentation' label to any change to .md files within the entire repository
135+
# Add 'Documentation' label to any change to .md files within the entire repository
136136
Documentation:
137137
- changed-files:
138138
- any-glob-to-any-file: '**/*.md'
@@ -249,10 +249,10 @@ jobs:
249249
pull-requests: write
250250
runs-on: ubuntu-latest
251251
steps:
252-
252+
253253
# Label PRs 1, 2, and 3
254254
- uses: actions/labeler@v6
255-
with:
255+
with:
256256
pr-number: |
257257
1
258258
2
@@ -261,9 +261,9 @@ jobs:
261261

262262
**Note:** in normal usage the `pr-number` input is not required as the action will detect the PR number from the workflow context.
263263

264-
#### Outputs
264+
#### Outputs
265265

266-
Labeler provides the following outputs:
266+
Labeler provides the following outputs:
267267

268268
| Name | Description |
269269
|--------------|-----------------------------------------------------------|
@@ -285,13 +285,13 @@ jobs:
285285
steps:
286286
- id: label-the-PR
287287
uses: actions/labeler@v6
288-
288+
289289
- id: run-frontend-tests
290290
if: contains(steps.label-the-PR.outputs.all-labels, 'frontend')
291291
run: |
292292
echo "Running frontend tests..."
293293
# Put your commands for running frontend tests here
294-
294+
295295
- id: run-backend-tests
296296
if: contains(steps.label-the-PR.outputs.all-labels, 'backend')
297297
run: |
@@ -327,7 +327,7 @@ To ensure the action works correctly, include the following permissions in your
327327
issues: write
328328
```
329329

330-
### Manual Label Creation as an Alternative to Granting issues write Permission
330+
### Manual Label Creation as an Alternative to Granting issues write Permission
331331

332332
If you prefer not to grant the `issues: write` permission in your workflow, you can manually create all required labels in the repository before the action runs.
333333

0 commit comments

Comments
 (0)