├── .circleci └── config.yml ├── .github └── workflows │ ├── build_and_test.yaml │ └── release.yaml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── README.md ├── actions ├── add_comment.py ├── add_comment.yaml ├── add_status.py ├── add_status.yaml ├── add_team_membership.py ├── add_team_membership.yaml ├── check_deployment_env.py ├── check_deployment_env.yaml ├── create_deployment.py ├── create_deployment.yaml ├── create_deployment_status.py ├── create_deployment_status.yaml ├── create_file.py ├── create_file.yaml ├── create_issue.py ├── create_issue.yaml ├── create_pull.py ├── create_pull.yaml ├── create_release.py ├── create_release.yaml ├── delete_branch_protection.py ├── delete_branch_protection.yaml ├── deployment_event.yaml ├── get_branch_protection.py ├── get_branch_protection.yaml ├── get_clone_stats.py ├── get_clone_stats.yaml ├── get_contents.py ├── get_contents.yaml ├── get_deployment_statuses.py ├── get_deployment_statuses.yaml ├── get_issue.py ├── get_issue.yaml ├── get_pull.py ├── get_pull.yaml ├── get_traffic_stats.py ├── get_traffic_stats.yaml ├── get_user.py ├── get_user.yaml ├── latest_release.py ├── latest_release.yaml ├── lib │ ├── __init__.py │ ├── base.py │ ├── formatters.py │ └── utils.py ├── list_deployments.py ├── list_deployments.yaml ├── list_issues.py ├── list_issues.yaml ├── list_pulls.py ├── list_pulls.yaml ├── list_releases.py ├── list_releases.yaml ├── list_teams.py ├── list_teams.yaml ├── merge_pull.py ├── merge_pull.yaml ├── review_pull.py ├── review_pull.yaml ├── store_oauth_token.py ├── store_oauth_token.yaml ├── update_branch_protection.py ├── update_branch_protection.yaml ├── update_file.py ├── update_file.yaml └── workflows │ └── deployment_event.yaml ├── aliases ├── create_deployment.yaml ├── create_release.yaml ├── deployment_statuses.yaml ├── get_user.yaml ├── latest_release.yaml ├── list_releases.yaml └── store_oauth_token.yaml ├── config.schema.yaml ├── github.yaml.example ├── icon.png ├── pack.yaml ├── requirements-tests.txt ├── requirements.txt ├── rules └── deploy_pack_on_deployment_event.yaml ├── sensors ├── github_repository_sensor.py └── github_repository_sensor.yaml └── tests ├── fixtures ├── blank.yaml ├── full-enterprise.yaml └── full.yaml ├── github_base_action_test_case.py ├── test_action_add_comment.py ├── test_action_add_status.py ├── test_action_add_team_membership.py ├── test_action_aliases.py ├── test_action_check_deployment_env.py ├── test_action_create_deployment.py ├── test_action_create_deployment_status.py ├── test_action_create_file.py ├── test_action_create_issue.py ├── test_action_create_release.py ├── test_action_get_clone_stats.py ├── test_action_get_contents.py ├── test_action_get_deployment_statuses.py ├── test_action_get_issue.py ├── test_action_get_traffic_stats.py ├── test_action_get_user.py ├── test_action_latest_release.py ├── test_action_list_deployments.py ├── test_action_list_issues.py ├── test_action_list_releases.py ├── test_action_list_teams.py ├── test_action_store_oauth_token.py └── test_action_update_file.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/build_and_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/.github/workflows/build_and_test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/README.md -------------------------------------------------------------------------------- /actions/add_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/add_comment.py -------------------------------------------------------------------------------- /actions/add_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/add_comment.yaml -------------------------------------------------------------------------------- /actions/add_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/add_status.py -------------------------------------------------------------------------------- /actions/add_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/add_status.yaml -------------------------------------------------------------------------------- /actions/add_team_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/add_team_membership.py -------------------------------------------------------------------------------- /actions/add_team_membership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/add_team_membership.yaml -------------------------------------------------------------------------------- /actions/check_deployment_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/check_deployment_env.py -------------------------------------------------------------------------------- /actions/check_deployment_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/check_deployment_env.yaml -------------------------------------------------------------------------------- /actions/create_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_deployment.py -------------------------------------------------------------------------------- /actions/create_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_deployment.yaml -------------------------------------------------------------------------------- /actions/create_deployment_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_deployment_status.py -------------------------------------------------------------------------------- /actions/create_deployment_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_deployment_status.yaml -------------------------------------------------------------------------------- /actions/create_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_file.py -------------------------------------------------------------------------------- /actions/create_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_file.yaml -------------------------------------------------------------------------------- /actions/create_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_issue.py -------------------------------------------------------------------------------- /actions/create_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_issue.yaml -------------------------------------------------------------------------------- /actions/create_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_pull.py -------------------------------------------------------------------------------- /actions/create_pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_pull.yaml -------------------------------------------------------------------------------- /actions/create_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_release.py -------------------------------------------------------------------------------- /actions/create_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/create_release.yaml -------------------------------------------------------------------------------- /actions/delete_branch_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/delete_branch_protection.py -------------------------------------------------------------------------------- /actions/delete_branch_protection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/delete_branch_protection.yaml -------------------------------------------------------------------------------- /actions/deployment_event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/deployment_event.yaml -------------------------------------------------------------------------------- /actions/get_branch_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_branch_protection.py -------------------------------------------------------------------------------- /actions/get_branch_protection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_branch_protection.yaml -------------------------------------------------------------------------------- /actions/get_clone_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_clone_stats.py -------------------------------------------------------------------------------- /actions/get_clone_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_clone_stats.yaml -------------------------------------------------------------------------------- /actions/get_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_contents.py -------------------------------------------------------------------------------- /actions/get_contents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_contents.yaml -------------------------------------------------------------------------------- /actions/get_deployment_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_deployment_statuses.py -------------------------------------------------------------------------------- /actions/get_deployment_statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_deployment_statuses.yaml -------------------------------------------------------------------------------- /actions/get_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_issue.py -------------------------------------------------------------------------------- /actions/get_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_issue.yaml -------------------------------------------------------------------------------- /actions/get_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_pull.py -------------------------------------------------------------------------------- /actions/get_pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_pull.yaml -------------------------------------------------------------------------------- /actions/get_traffic_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_traffic_stats.py -------------------------------------------------------------------------------- /actions/get_traffic_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_traffic_stats.yaml -------------------------------------------------------------------------------- /actions/get_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_user.py -------------------------------------------------------------------------------- /actions/get_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/get_user.yaml -------------------------------------------------------------------------------- /actions/latest_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/latest_release.py -------------------------------------------------------------------------------- /actions/latest_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/latest_release.yaml -------------------------------------------------------------------------------- /actions/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actions/lib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/lib/base.py -------------------------------------------------------------------------------- /actions/lib/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/lib/formatters.py -------------------------------------------------------------------------------- /actions/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/lib/utils.py -------------------------------------------------------------------------------- /actions/list_deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_deployments.py -------------------------------------------------------------------------------- /actions/list_deployments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_deployments.yaml -------------------------------------------------------------------------------- /actions/list_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_issues.py -------------------------------------------------------------------------------- /actions/list_issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_issues.yaml -------------------------------------------------------------------------------- /actions/list_pulls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_pulls.py -------------------------------------------------------------------------------- /actions/list_pulls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_pulls.yaml -------------------------------------------------------------------------------- /actions/list_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_releases.py -------------------------------------------------------------------------------- /actions/list_releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_releases.yaml -------------------------------------------------------------------------------- /actions/list_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_teams.py -------------------------------------------------------------------------------- /actions/list_teams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/list_teams.yaml -------------------------------------------------------------------------------- /actions/merge_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/merge_pull.py -------------------------------------------------------------------------------- /actions/merge_pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/merge_pull.yaml -------------------------------------------------------------------------------- /actions/review_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/review_pull.py -------------------------------------------------------------------------------- /actions/review_pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/review_pull.yaml -------------------------------------------------------------------------------- /actions/store_oauth_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/store_oauth_token.py -------------------------------------------------------------------------------- /actions/store_oauth_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/store_oauth_token.yaml -------------------------------------------------------------------------------- /actions/update_branch_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/update_branch_protection.py -------------------------------------------------------------------------------- /actions/update_branch_protection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/update_branch_protection.yaml -------------------------------------------------------------------------------- /actions/update_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/update_file.py -------------------------------------------------------------------------------- /actions/update_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/update_file.yaml -------------------------------------------------------------------------------- /actions/workflows/deployment_event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/actions/workflows/deployment_event.yaml -------------------------------------------------------------------------------- /aliases/create_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/create_deployment.yaml -------------------------------------------------------------------------------- /aliases/create_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/create_release.yaml -------------------------------------------------------------------------------- /aliases/deployment_statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/deployment_statuses.yaml -------------------------------------------------------------------------------- /aliases/get_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/get_user.yaml -------------------------------------------------------------------------------- /aliases/latest_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/latest_release.yaml -------------------------------------------------------------------------------- /aliases/list_releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/list_releases.yaml -------------------------------------------------------------------------------- /aliases/store_oauth_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/aliases/store_oauth_token.yaml -------------------------------------------------------------------------------- /config.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/config.schema.yaml -------------------------------------------------------------------------------- /github.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/github.yaml.example -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/icon.png -------------------------------------------------------------------------------- /pack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/pack.yaml -------------------------------------------------------------------------------- /requirements-tests.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyGithub==1.45 2 | urllib3 3 | requests==2.23.0 4 | beautifulsoup4==4.7.1 5 | -------------------------------------------------------------------------------- /rules/deploy_pack_on_deployment_event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/rules/deploy_pack_on_deployment_event.yaml -------------------------------------------------------------------------------- /sensors/github_repository_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/sensors/github_repository_sensor.py -------------------------------------------------------------------------------- /sensors/github_repository_sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/sensors/github_repository_sensor.yaml -------------------------------------------------------------------------------- /tests/fixtures/blank.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /tests/fixtures/full-enterprise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/fixtures/full-enterprise.yaml -------------------------------------------------------------------------------- /tests/fixtures/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/fixtures/full.yaml -------------------------------------------------------------------------------- /tests/github_base_action_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/github_base_action_test_case.py -------------------------------------------------------------------------------- /tests/test_action_add_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_add_comment.py -------------------------------------------------------------------------------- /tests/test_action_add_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_add_status.py -------------------------------------------------------------------------------- /tests/test_action_add_team_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_add_team_membership.py -------------------------------------------------------------------------------- /tests/test_action_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_aliases.py -------------------------------------------------------------------------------- /tests/test_action_check_deployment_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_check_deployment_env.py -------------------------------------------------------------------------------- /tests/test_action_create_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_create_deployment.py -------------------------------------------------------------------------------- /tests/test_action_create_deployment_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_create_deployment_status.py -------------------------------------------------------------------------------- /tests/test_action_create_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_create_file.py -------------------------------------------------------------------------------- /tests/test_action_create_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_create_issue.py -------------------------------------------------------------------------------- /tests/test_action_create_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_create_release.py -------------------------------------------------------------------------------- /tests/test_action_get_clone_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_get_clone_stats.py -------------------------------------------------------------------------------- /tests/test_action_get_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_get_contents.py -------------------------------------------------------------------------------- /tests/test_action_get_deployment_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_get_deployment_statuses.py -------------------------------------------------------------------------------- /tests/test_action_get_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_get_issue.py -------------------------------------------------------------------------------- /tests/test_action_get_traffic_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_get_traffic_stats.py -------------------------------------------------------------------------------- /tests/test_action_get_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_get_user.py -------------------------------------------------------------------------------- /tests/test_action_latest_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_latest_release.py -------------------------------------------------------------------------------- /tests/test_action_list_deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_list_deployments.py -------------------------------------------------------------------------------- /tests/test_action_list_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_list_issues.py -------------------------------------------------------------------------------- /tests/test_action_list_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_list_releases.py -------------------------------------------------------------------------------- /tests/test_action_list_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_list_teams.py -------------------------------------------------------------------------------- /tests/test_action_store_oauth_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_store_oauth_token.py -------------------------------------------------------------------------------- /tests/test_action_update_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm-Exchange/stackstorm-github/HEAD/tests/test_action_update_file.py --------------------------------------------------------------------------------