library
turbot/github
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Block User in Organization

Blocks a specified user from an organization, preventing them from collaborating on any repositories within that organization.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run github.pipeline.block_user_in_organization \
--arg 'organization=<string>' \
--arg 'username=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = github.pipeline.block_user_in_organization
args = {
organization = <string>
username = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.github
YesName of Github connection to use. If not provided, the default Github connection will be used.connection.github.default
organization
string
YesThe organization name. The name is not case sensitive.-
username
string
YesThe handle for the GitHub user account.-

Outputs

This pipeline has no outputs.