Skip to content

Commit

Permalink
Add steps[*].name in README examples (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarina committed Apr 30, 2023
1 parent f557d1f commit 1f07ccc
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ jobs:
add_label:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-add-labels@v1
- name: checkout
uses: actions/checkout@v2

- name: add label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.comment.body, '/add-labels') }}
with:
labels: bug
Expand All @@ -57,8 +60,11 @@ jobs:
add_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-add-labels@v1
- name: checkout
uses: actions/checkout@v2

- name: add labels
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.comment.body, '/add-labels') }}
with:
labels: |
Expand Down

0 comments on commit 1f07ccc

Please sign in to comment.