Skip to content

Commit 6d237c2

Browse files
committed
fix broken yaml on action
1 parent ae41f7d commit 6d237c2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ jobs:
131131
| `GITHUB_APP_ID` | GitHub App ID | `106341` | `null` |
132132
| `GITHUB_INSTALLATION_ID` | Github App Installation ID | `15627551` | `null` |
133133
| `GITHUB_PRIVATE_KEY` | Base64'd private key as downloaded from github application registration step | `Zm9vCg==` | `null` |
134-
| `IGNORED_USERS` | Comma separated list of user ids to totally ignore always, useful for owners of an org you don't accidentally removed | `owner1,owner2` | `null` |
134+
| `IGNORED_USERS` | Comma separated list of user ids to totally ignore always, useful for owners of an org you don't want accidentally removed | `owner1,owner2` | `null` |

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
description: 'Email address to assume to, needs to be an workspace admin'
77
required: true
88
google-credentials:
9-
description: 'Base64'd json as downloaded from the google service account creation step'
9+
description: 'Base64d json as downloaded from the google service account creation step'
1010
required: true
1111
add-users:
1212
description: 'Set to TRUE to add users to the github organisation'
@@ -15,7 +15,7 @@ inputs:
1515
description: 'Set to TRUE to remove users from the github organisation'
1616
required: false
1717
exit-code-on-missmatch:
18-
description: 'Exit code to use when there's a mismatch, useful when combined with `ADD_USERS` and `REMOVE_USERS` to be used in a dry-run mode'
18+
description: 'Exit code to use when there is a mismatch, useful when combined with `ADD_USERS` and `REMOVE_USERS` to be used in a dry-run mode'
1919
required: false
2020
github-org:
2121
description: 'GitHub Organization '
@@ -27,10 +27,10 @@ inputs:
2727
description: 'Github App Installation ID'
2828
required: true
2929
github-private-key:
30-
description: 'Base64'd private key as downloaded from github application registration step'
30+
description: 'Base64d private key as downloaded from github application registration step'
3131
required: true
3232
ignored-users:
33-
description: 'Comma separated list of user ids to totally ignore always, useful for owners of an org you don't accidentally removed'
33+
description: 'Comma separated list of user ids to totally ignore always, useful for owners of an org you do not want accidentally removed'
3434
required: false
3535
runs:
3636
using: 'docker'

0 commit comments

Comments
 (0)