Skip to content

Commit

Permalink
Improve step names (JabRef#11972)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Oct 15, 2024
1 parent 7d72272 commit be7bea6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/on-labeled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:

jobs:
FirstTimeCodeContribution:
name: Add greeting to issues for first time contributors
if: ${{ github.event.label.name == 'FirstTimeCodeContribution' }}
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -47,7 +46,7 @@ jobs:
target-column: "Assigned"
ignored-columns: ""
Assigned:
name: "Update project boards for label '📍 Assigned'"
name: "📍 Assigned"
if: ${{ github.event.label.name == '📍 Assigned' }}
runs-on: ubuntu-latest
permissions:
Expand All @@ -70,6 +69,7 @@ jobs:
target-column: "Assigned"
ignored-columns: ""
good-first-issue:
name: "good first issue"
if: "${{ github.event.label.name == 'good first issue' }}"
runs-on: ubuntu-latest
steps:
Expand All @@ -90,6 +90,7 @@ jobs:
ISSUE_URL=$(jq --raw-output .issue.html_url "$GITHUB_EVENT_PATH")
gh project item-add 15 --owner JabRef --url $ISSUE_URL
status-freeze:
name: "status: freeze"
if: "${{ github.event.label.name == 'status: freeze' }}"
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit be7bea6

Please sign in to comment.