-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the label checker action (#347)
Co-authored-by: sarayourfriend <[email protected]> Co-authored-by: Dhruv Bhanushali <[email protected]> Co-authored-by: Krystle Salazar <[email protected]> Fixes #344
- Loading branch information
1 parent
e9c6841
commit 3c85d3a
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,24 +13,24 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check aspect label | ||
uses: sugarshin/[email protected] | ||
uses: agilepathway/[email protected] | ||
with: | ||
required_oneof: "💻 aspect: code,📄 aspect: text,🤖 aspect: dx,🕹 aspect: interface,♿️ aspect: a11y" | ||
one_of: "💻 aspect: code,📄 aspect: text,🤖 aspect: dx,🕹 aspect: interface,♿️ aspect: a11y" | ||
|
||
check_goal_label: | ||
name: Check goal label | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check goal label | ||
uses: sugarshin/[email protected] | ||
uses: agilepathway/[email protected] | ||
with: | ||
required_oneof: "🌟 goal: addition,🛠 goal: fix,✨ goal: improvement,🧰 goal: internal improvement" | ||
one_of: "🌟 goal: addition,🛠 goal: fix,✨ goal: improvement,🧰 goal: internal improvement" | ||
|
||
check_priority_label: | ||
name: Check priority label | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check priority label | ||
uses: sugarshin/[email protected] | ||
uses: agilepathway/[email protected] | ||
with: | ||
required_oneof: "🟩 priority: low,🟨 priority: medium,🟧 priority: high,🟥 priority: critical" | ||
one_of: "🟩 priority: low,🟨 priority: medium,🟧 priority: high,🟥 priority: critical" |