You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ This is a basic action that will label issues and pull request with a given labe
10
10
| label_color | false | The color of the label. If the label already exists in the repository, this setting will have no effect. | 5319E7 |
11
11
| org_membership | false | Contributions from users that are not members of the specified organisations will be labeled with the configured label. The value can be a single organisation or a comma-separated list of organisations. | puppetlabs |
12
12
| logins_to_ignore | false | Contributions from the specified users will not be labeled by this action. The value can be a single login or a comma-separated list of logins. |`N/A`|
13
+
| fail_if_member | false | Pipeline will fail, if the user is member of specified organisations and no label has been added manually. | false |
13
14
| token | true | A token with enough privilege to view org memberships and repo content. |`N/A`|
Copy file name to clipboardExpand all lines: action.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,10 @@ inputs:
17
17
logins_to_ignore:
18
18
description: 'Contributions from the specified users will not be labeled by this action. The value can be a single login or a comma-separated list of logins.'
19
19
required: false
20
+
fail_if_member:
21
+
description: 'Pipeline will fail, if the user is member of specified organisations and no label has been added manually.'
22
+
default: 'false'
23
+
required: false
20
24
token:
21
25
description: 'The GitHub token to use for authentication.'
0 commit comments