We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de37a7 commit 1f0e927Copy full SHA for 1f0e927
src/main.ts
@@ -23,19 +23,15 @@ export async function run(): Promise<void> {
23
client.isExcludedLogin(loginsToIgnore)
24
) {
25
if (failIfMember === 'true' && !labels) {
26
- core.setFailed(
27
- 'The PR is missing a label!'
28
- )
+ core.setFailed('The PR is missing a label!')
29
} else {
30
core.info("Looks like this issue doesn't need labeling! 👍")
31
}
32
return
33
34
35
if (missingCommunityLabel) {
36
37
- 'Community PR must have a label name community'
38
+ core.setFailed('Community PR must have a label name community')
39
40
41
0 commit comments