@@ -17,6 +17,9 @@ inputs:
1717 remove-users :
1818 description : ' Set to TRUE to remove users from the github organisation'
1919 required : false
20+ remove-suspended_users :
21+ description : ' Set to TRUE to remove suspended users from the github organisation'
22+ required : false
2023 exit-code-on-missmatch :
2124 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'
2225 required : false
@@ -57,19 +60,21 @@ runs:
5760 -e GOOGLE_CREDENTIALS="$GOOGLE_CREDENTIALS" \
5861 -e ADD_USERS="$ADD_USERS" \
5962 -e REMOVE_USERS="$REMOVE_USERS" \
63+ -e REMOVE_SUSPENDED_USERS="$REMOVE_SUSPENDED_USERS" \
6064 -e EXIT_CODE_ON_MISMATCH="$EXIT_CODE_ON_MISMATCH" \
6165 -e GITHUB_ORG="$GITHUB_ORG" \
6266 -e GITHUB_APP_ID="$GITHUB_APP_ID" \
6367 -e GITHUB_INSTALLATION_ID="$GITHUB_INSTALLATION_ID" \
6468 -e GITHUB_PRIVATE_KEY="$GITHUB_PRIVATE_KEY" \
6569 -e IGNORED_USERS="$IGNORED_USERS" \
66- docker.pkg.github.com/remarkable/githubusermanager/githubusermanager:v1.1.9
70+ docker.pkg.github.com/remarkable/githubusermanager/githubusermanager:v1.3.1
6771 shell : bash
6872 env :
6973 GOOGLE_EMAIL_ADDRESS : ${{ inputs.google-email-address }}
7074 GOOGLE_CREDENTIALS : ${{ inputs.google-credentials }}
7175 ADD_USERS : ${{ inputs.add-users }}
7276 REMOVE_USERS : ${{ inputs.remove-users }}
77+ REMOVE_SUSPENDED_USERS : ${{ inputs.remove-suspended_users }}
7378 EXIT_CODE_ON_MISMATCH : ${{ inputs.exit-code-on-missmatch }}
7479 GITHUB_ORG : ${{ inputs.github-org }}
7580 GITHUB_APP_ID : ${{ inputs.github-app-id }}
0 commit comments