BOSA Connectors
Project description
BOSA API SDK (Bosa Connector)
A Python SDK for seamlessly connecting to APIs that implement BOSA's Plugin Architecture under HTTP Interface. This connector acts as a proxy, simplifying the integration with BOSA-compatible APIs.
Features
- Simple and intuitive API for connecting to BOSA-compatible services
- Automatic endpoint discovery and schema validation
- Built-in authentication support (BOSA API Key and User Token)
- User management and OAuth2 integration flow support
- Type-safe parameter validation
- Flexible parameter passing (dictionary or keyword arguments)
- Retry support for requests that fail (429 or 5xx)
- Response fields filtering based on action and output
Installation
Prerequisites
- Python 3.11+ - Install here
- Pip (if using Pip) - Install here
- Poetry 1.8.1+ (if using Poetry) - Install here
- Git (if using Git) - Install here
- For git installation:
- Access to the GDP Labs SDK github repository
1. Installation from Pypi
Choose one of the following methods to install the package:
Using pip
pip install bosa-connectors-binary
Using Poetry
poetry add bosa-connectors-binary
2. Development Installation (Git)
For development purposes, you can install directly from the Git repository:
poetry add "git+ssh://git@github.com/GDP-ADMIN/bosa-sdk.git#subdirectory=python/bosa-connectors"
Quick Start
Here's a simple example of how to use the BOSA Connector with API key authentication and user token.
Initialization
Before using the connector, you need to initialize it with your BOSA API base URL and API key.
from bosa_connectors.connector import BosaConnector
# Initialize the connector
bosa = BosaConnector(api_base_url="YOUR_BOSA_API_BASE_URL", api_key="YOUR_API_KEY")
Authentication
After initializing the connector, you can authenticate with your BOSA API key.
# User token from authentication
user_token = "Enter your key here from authentication, or refer to User Authentication section below"
# Check if a user has an integration for a connector
has_integration = bosa.user_has_integration("github", user_token)
if not has_integration:
# Initiate the OAuth2 flow for a connector
auth_url = bosa.initiate_connector_auth("github", user_token, "https://your-callback-uri.com")
# Redirect the user to auth_url to complete authentication, we exit here.
print("Integration with GitHub not found.")
print(f"Please visit {auth_url} to complete authentication.")
exit()
Alternatively, you can authenticate the user first and then use their token:
user = bosa.authenticate_bosa_user("username", "password")
# Get user token
user_token = user.token
Basic Example (Direct Execution)
It is the basic way to execute actions, where you need to provide the connector name, action name, and user token. The response will contain the data and status:
# Prepare input parameters
params = {
"owner": "gdp-admin",
"author": "samuellusandi",
"per_page": 1,
"sort": "author_date",
"created_date_start": "2025-02-01",
"created_date_end": "2025-02-02"
}
# Execute the action with user token
data, status = bosa.execute("github", "search_commits", token=user_token, max_attempts=1, input_=params)
# Print the result
print(data)
print(status)
Alternative Approach (Fluent Interface)
For more complex scenarios or more control over the execution, you can use the fluent interface. We're recommending this approach if you:
- Need to execute multiple actions with different parameters
- Expecting list response
- Need to execute actions in a loop
# Prepare input parameters
params = {
"owner": "gdp-admin",
"author": "samuellusandi",
"per_page": 1,
"sort": "author_date",
"created_date_start": "2025-02-01",
"created_date_end": "2025-02-02"
}
# Create a connector instance to a service
github = bosa.connect('github')
# Execute actions with fluent interface
response = github.action('list_pull_requests')\
.params(params)\
.max_attempts(3)\
.token('user-token')\
.run() # Execute and return ActionResponse for advanced data handling
# Get initial data
initial_data = response.get_data()
# Iterate the following next pages
while response.has_next():
response = response.next_page()
data = response.get_data()
# Process data here
...
# You can also navigate backwards
while response.has_prev():
response = response.prev_page()
data = response.get_data()
# Process data here
...
# Execute multiple independent actions using the same connector instance
commits_response = github.action('list_commits')\
.params({
'owner': 'GDP-ADMIN',
'repo': 'bosa',
'page': 1,
'per_page': 10
})\
.token('user-token')\
.run()
run method also available for direct execution from connector instance, without using fluent interface.
# Prepare input parameters
params = {
"owner": "gdp-admin",
"author": "samuellusandi",
"per_page": 1,
"sort": "author_date",
"created_date_start": "2025-02-01",
"created_date_end": "2025-02-02"
}
# Execute actions with run method
response = bosa.run('github', 'list_pull_requests', params)
print(response.get_data())
Working with Files using ConnectorFile
When working with APIs that require file uploads or return file downloads, use the ConnectorFile model:
from bosa_connectors.models.file import ConnectorFile
# For uploads: Create a ConnectorFile object
with open("document.pdf", "rb") as f:
upload_file = ConnectorFile(
file=f.read(),
filename="document.pdf",
content_type="application/pdf"
)
params = {
"file": upload_file,
"name": "My Document"
}
# Include in your parameters
result, status = bosa.execute("google_drive", "upload_file", input_=params)
# For downloads: Check response type
file_result, status = bosa.execute("google_drive", "download_file", input_={"file_id": "123"})
if isinstance(file_result, ConnectorFile):
# Save to disk
with open(file_result.filename or "downloaded_file", "wb") as f:
f.write(file_result.file)
Available Methods
Connector Instance Methods
The connector instance provides several methods for configuring and executing actions:
-
connect(name): Create a connector instance to a service -
action(name): Specify the action to execute -
params(dict): Set request parameters (including pagination parameters like page and per_page). Note that params for each plugin and action could be different -
token(str): Set the BOSA user token -
headers(dict): Set custom request headers -
max_attempts(number): Set the maximum number of retry attempts (default: 1) Execution Methods: -
run(): Execute and return ActionResponse for advanced data handling -
execute(): Execute and return data and status for basic data handling. The data part of the return value can be a ConnectorFile object when the API returns a non-JSON response (such as a file download).
Response Handling (ActionResponse)
The ActionResponse class provides methods for handling the response and pagination:
get_data(): Get the current page data (returns the data field from the response). This can return a ConnectorFile object when the API returns a non-JSON response (such as a file download).get_meta(): Get the metadata information from the response (e.g., pagination details, total count)get_status(): Get the HTTP status codeis_list(): Check if response is a listhas_next(): Check if there is a next pagehas_prev(): Check if there is a previous pagenext_page(): Move to and execute next pageprev_page(): Move to and execute previous pageget_all_items(): Get all items from all pages (returns a list of objects containing data and meta for each page)
Data Models
The SDK uses the following data models:
ActionResponseData: Contains the response data structure withdata(list, object, or ConnectorFile instance) andmeta(metadata) fieldsInitialExecutorRequest: Stores the initial request parameters used for pagination and subsequent requestsConnectorFile: Represents a file in requests and responses with these properties:file: Raw bytes content of the filefilename: Optional name of the filecontent_type: Optional MIME type of the fileheaders: Optional HTTP headers for the file
Configuration Parameters
api_base_url: The base URL of your BOSA API endpoint (default: "https://api.bosa.id"). This parameter is extremely important as it determines the URL of the BOSA API you are connecting to, and it will be used to populate the available actions/endpoints and their parameters upon initialization.api_key: Your BOSA API key for authentication. This is different from plugin-specific API keys, which are managed separately by the BOSA system.
Execution Parameters
connector: The name of the connector to use. This parameter is used to determine the connector's available actions and their parameters.action: The name of the action to execute. This parameter is automatically populated by the connector based on the available actions and their parameters. The list of available actions per connector can be found in https://api.bosa.id/docs and are populated through https://api.bosa.id/connectors.max_attempts: The maximum number of attempts to make the API request. If the request fails, the connector will retry the request up to this number of times. The default value is 1 if not provided.- The retries are handled automatically by the connector, with exponential backoff.
- The retries are only done for errors that are considered retryable (429 or 5xx).
input_: The input parameters for the action. This parameter is a dictionary that contains the parameters for the action. The connector will validate the input parameters against the action's schema.- To filter response fields, simply add the
response_fieldsparameter to the input dictionary. This parameter is a list of field names that will be returned in the response. For nested fields, you can use dot notation, e.g.user.loginwill return the following:
{ "user": { "login": "userlogin" } }
- To filter response fields, simply add the
token: Optional BOSA User Token for authenticating requests. When provided, the connector will include this token in the request headers. This is required for user-specific actions or when working with third-party integrations.
How It Works
-
Initialization: When you create a
BosaConnectorinstance, and trigger anexecute(), the connector will first populate and cache the available actions and their parameters. This is done automatically. -
Action Discovery: The connector expects the BOSA API to expose an endpoint that lists all available actions and their parameters. This is handled automatically by BOSA's HTTP Interface.
-
Execution: When you call
execute(), the connector:- Validates your input parameters against the action's schema
- Handles authentication
- Makes the API request
- Returns the formatted response
Compatibility
While primarily tested with BOSA's HTTP Interface, this connector should theoretically work with any API that implements BOSA's Plugin Architecture, as long as it:
- Exposes an endpoint listing available actions and their parameters
- Follows BOSA's standard HTTP Interface specifications (through the Plugin Architecture)
- All actions must be exposed as
POSTendpoints.
- All actions must be exposed as
- Implements the required authentication mechanisms
Error Handling
The connector includes built-in error handling for:
- Invalid parameters
- Authentication failures
- Connection issues
- API response errors
User Authentication
The BOSA Connector supports user-based authentication which allows for user-specific actions and third-party integrations:
# Create a new BOSA user
user_data = bosa.create_bosa_user("username")
# Save the secret for later use
user_secret = user_data.secret
# Authenticate a user and get their token
token = bosa.authenticate_bosa_user("username", user_secret)
# Get user information
user_info = bosa.get_user_info(token.token)
Integration Management
The BOSA Connector provides methods to manage third-party integrations for authenticated users:
# Check if a user has an integration for a connector
has_integration = bosa.user_has_integration("github", user_token)
# Initiate the OAuth2 flow for a connector
auth_url = bosa.initiate_connector_auth("github", user_token, "https://your-callback-uri.com")
# Redirect the user to auth_url to complete authentication
# Remove an integration
remove_result = bosa.remove_integration("github", user_token)
References
Product Requirements Documents(PRD):
Architecture Documents:
Design Documents:
Implementation Documents:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bosa_connectors_binary-0.0.9-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 343.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96d7dd4914190c4a7c842bf7dcd61794be795145bd8c4a306ca47050da33c111
|
|
| MD5 |
9813f2bbeaa304fdceb37a012888b84e
|
|
| BLAKE2b-256 |
a33232d2d00c189552f75acd9bb09e0c5952dcd09f74092f2965904016f6d14f
|
Provenance
The following attestation bundles were made for bosa_connectors_binary-0.0.9-cp312-cp312-win_amd64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/bosa-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bosa_connectors_binary-0.0.9-cp312-cp312-win_amd64.whl -
Subject digest:
96d7dd4914190c4a7c842bf7dcd61794be795145bd8c4a306ca47050da33c111 - Sigstore transparency entry: 218691722
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/bosa-sdk@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Branch / Tag:
refs/tags/bosa-connectors-python-0.0.9 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Trigger Event:
push
-
Statement type:
File details
Details for the file bosa_connectors_binary-0.0.9-cp312-cp312-manylinux_2_31_x86_64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp312-cp312-manylinux_2_31_x86_64.whl
- Upload date:
- Size: 521.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.31+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.0 Linux/5.10.0-32-cloud-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16d987e3fb90aebb59ea22336137babe6b5ff2363c62b05c918d8c5fec49cc2a
|
|
| MD5 |
1aeaf8361a1f14cc571b3c3ac617e6bc
|
|
| BLAKE2b-256 |
000968a5028b52acffa6d3d0765bd185b0f3385ddc11c300565e4f1a84d86dad
|
File details
Details for the file bosa_connectors_binary-0.0.9-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 313.3 kB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdc26379482f8137cc0c8139c102cf872071d595be832229804f5e0d91f162ea
|
|
| MD5 |
b7d545a27c86a84e9fabe443f296be0d
|
|
| BLAKE2b-256 |
dda1afa0778bc23354ab679f60e04aa9f7c5c56a418acd2975c23473188e4946
|
Provenance
The following attestation bundles were made for bosa_connectors_binary-0.0.9-cp312-cp312-macosx_14_0_arm64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/bosa-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bosa_connectors_binary-0.0.9-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
bdc26379482f8137cc0c8139c102cf872071d595be832229804f5e0d91f162ea - Sigstore transparency entry: 218682792
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/bosa-sdk@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Branch / Tag:
refs/tags/bosa-connectors-python-0.0.9 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Trigger Event:
push
-
Statement type:
File details
Details for the file bosa_connectors_binary-0.0.9-cp312-cp312-macosx_13_0_x86_64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp312-cp312-macosx_13_0_x86_64.whl
- Upload date:
- Size: 351.6 kB
- Tags: CPython 3.12, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbf033e6d002951d9fb8503d2d76e2067b31f032fc28ce8fc34025ee582a42b9
|
|
| MD5 |
0e1ae2d8ba056267943136f470272b83
|
|
| BLAKE2b-256 |
9547d7f97a1549a762a73511d9e0ad7a82912d9a3efb123896137d6651fe1bf8
|
Provenance
The following attestation bundles were made for bosa_connectors_binary-0.0.9-cp312-cp312-macosx_13_0_x86_64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/bosa-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bosa_connectors_binary-0.0.9-cp312-cp312-macosx_13_0_x86_64.whl -
Subject digest:
dbf033e6d002951d9fb8503d2d76e2067b31f032fc28ce8fc34025ee582a42b9 - Sigstore transparency entry: 218681928
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/bosa-sdk@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Branch / Tag:
refs/tags/bosa-connectors-python-0.0.9 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Trigger Event:
push
-
Statement type:
File details
Details for the file bosa_connectors_binary-0.0.9-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 344.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3addf8913ba2e279210214724e14982610976b8e51fdd4ae37f9e6efb471286b
|
|
| MD5 |
0bb1ecf5659ea35baf4380c56f813e26
|
|
| BLAKE2b-256 |
f0857d7f09359d31a5b6bbf2c1d5e8f2f43bfa1581ae192bd6273cea0afa23a9
|
Provenance
The following attestation bundles were made for bosa_connectors_binary-0.0.9-cp311-cp311-win_amd64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/bosa-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bosa_connectors_binary-0.0.9-cp311-cp311-win_amd64.whl -
Subject digest:
3addf8913ba2e279210214724e14982610976b8e51fdd4ae37f9e6efb471286b - Sigstore transparency entry: 218691759
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/bosa-sdk@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Branch / Tag:
refs/tags/bosa-connectors-python-0.0.9 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Trigger Event:
push
-
Statement type:
File details
Details for the file bosa_connectors_binary-0.0.9-cp311-cp311-manylinux_2_31_x86_64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp311-cp311-manylinux_2_31_x86_64.whl
- Upload date:
- Size: 472.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.31+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.0 Linux/5.10.0-32-cloud-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6ce42f2245370b2c048de60f89a746b1e07c6d3dce6713ec7158ed0a99176e7
|
|
| MD5 |
1132089ba3fefb219b76c52ae7eb2b86
|
|
| BLAKE2b-256 |
38410d5861f3ab2bfdf4536030a998aea987cb12dbc7f8f219df7591f0f17554
|
File details
Details for the file bosa_connectors_binary-0.0.9-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 309.2 kB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d39a10f3ce86367a67dcd9036f1fefaf08e151d6de4d6b46ef91bdaa3b97b2
|
|
| MD5 |
4ddcb278bde586faf9888f216283aeb4
|
|
| BLAKE2b-256 |
8fa7e9a541f0515ad145523747d6487f2d1319303c4ed01b7a5547337b0f3f9b
|
Provenance
The following attestation bundles were made for bosa_connectors_binary-0.0.9-cp311-cp311-macosx_14_0_arm64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/bosa-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bosa_connectors_binary-0.0.9-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
03d39a10f3ce86367a67dcd9036f1fefaf08e151d6de4d6b46ef91bdaa3b97b2 - Sigstore transparency entry: 218682528
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/bosa-sdk@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Branch / Tag:
refs/tags/bosa-connectors-python-0.0.9 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Trigger Event:
push
-
Statement type:
File details
Details for the file bosa_connectors_binary-0.0.9-cp311-cp311-macosx_13_0_x86_64.whl.
File metadata
- Download URL: bosa_connectors_binary-0.0.9-cp311-cp311-macosx_13_0_x86_64.whl
- Upload date:
- Size: 343.1 kB
- Tags: CPython 3.11, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ef22bd5c83928e2cc3a319a637dcff7002440c6f1dfe8195616533651e165a6
|
|
| MD5 |
11f01b95317825e58171f7e2f0c66525
|
|
| BLAKE2b-256 |
8933dc47d3ca2f604cb4c38f0caf4ce8f3890de16c2f7005a01017b5eead547d
|
Provenance
The following attestation bundles were made for bosa_connectors_binary-0.0.9-cp311-cp311-macosx_13_0_x86_64.whl:
Publisher:
build-binary.yml on GDP-ADMIN/bosa-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bosa_connectors_binary-0.0.9-cp311-cp311-macosx_13_0_x86_64.whl -
Subject digest:
0ef22bd5c83928e2cc3a319a637dcff7002440c6f1dfe8195616533651e165a6 - Sigstore transparency entry: 218680750
- Sigstore integration time:
-
Permalink:
GDP-ADMIN/bosa-sdk@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Branch / Tag:
refs/tags/bosa-connectors-python-0.0.9 - Owner: https://github.com/GDP-ADMIN
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-binary.yml@b31e8f2cc89fbd520b7c76f34d1723af74d47e4c -
Trigger Event:
push
-
Statement type: