{"id":21304860,"url":"https://github.com/parasoft/execute-job-action","last_synced_at":"2025-07-11T21:30:48.333Z","repository":{"id":37793036,"uuid":"330779730","full_name":"parasoft/execute-job-action","owner":"parasoft","description":"A GitHub Action for running test execution jobs in a remote Parasoft Continuous Testing Platform","archived":false,"fork":false,"pushed_at":"2024-01-22T17:27:57.000Z","size":670,"stargazers_count":10,"open_issues_count":8,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-02T09:10:56.525Z","etag":null,"topics":["api","continuous","ctp","environment","functional","parasoft","soatest","testing","virtual"],"latest_commit_sha":null,"homepage":"https://www.parasoft.com/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/parasoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-18T20:30:27.000Z","updated_at":"2025-05-30T11:32:49.000Z","dependencies_parsed_at":"2023-02-14T00:45:24.870Z","dependency_job_id":null,"html_url":"https://github.com/parasoft/execute-job-action","commit_stats":{"total_commits":76,"total_committers":5,"mean_commits":15.2,"dds":0.5,"last_synced_commit":"1899d360584e281e027c537d2df0f75a1115776e"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":"actions/typescript-action","purl":"pkg:github/parasoft/execute-job-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parasoft%2Fexecute-job-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parasoft%2Fexecute-job-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parasoft%2Fexecute-job-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parasoft%2Fexecute-job-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parasoft","download_url":"https://codeload.github.com/parasoft/execute-job-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parasoft%2Fexecute-job-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264902067,"owners_count":23680987,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","continuous","ctp","environment","functional","parasoft","soatest","testing","virtual"],"created_at":"2024-11-21T16:16:12.987Z","updated_at":"2025-07-11T21:30:48.013Z","avatar_url":"https://github.com/parasoft.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/parasoft/execute-job-action\"\u003e\u003cimg alt=\"typescript-action status\" src=\"https://github.com/actions/typescript-action/workflows/build-test/badge.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# Execute a Parasoft CTP Job\n\nThis action executes a test scenario job located at the specified Parasoft Continuous Testing Platform endpoint.\n\n## Usage\n\nAdd the following entry to your Github workflow YAML file with the required inputs:\n\n```yaml\nuses: parasoft/execute-job-action@v1\nwith:\n  ctpUrl: 'http://ctp.mycompany.org:8080/em/'\n  ctpUsername: 'username'\n  ctpPassword: ${{ secrets.password }}\n  ctpJob: 'Example Job'\n  abortOnTimeout: false\n  timeoutInMinutes: 5\n  publishReport: false\n  dtpUrl: 'http://dtp.mycompany.org:8080/grs/'\n  dtpUsername: 'username'\n  dtpPassword: ${{ secrets.password }}\n  dtpProject: 'My Project'\n  buildId: ${{ github.run_number }}\n  sessionTag: ${{ github.workflow }}\n  appendEnvironment: false\n```\n### Required Inputs\nThe following inputs are required:\n| Input | Description |\n| --- | --- |\n| `ctpURL` | Specifies the Continuous Testing Platform endpoint to use for executing the job. |\n| `ctpUsername` | Specifies a user name for accessing the Continuous Testing Platform endpoint. |\n| `ctpPassword` | Specifies a Github encrypted secret for accessing the Continuous Testing Platform endpoint. Refer to the [Encrypted Secrets Documentation](https://docs.github.com/en/actions/reference/encrypted-secrets) for details on how to create an encrypted secret. |\n| `ctpJob` | Specifies the name of job to run. |\n\n### Optional Inputs\nThe following inputs are optional:\n| Input | Description |\n| --- | --- |\n| `abortOnTimeout` | Aborts a job when the execution time exceeds the specified timeout (see `timeoutInMinutes`). Set to `true` to enable. Default is `false`. |\n| `timeoutInMinutes` | Specifies the maximum execution time in minutes allowed before the job is aborted. Include this option if `abortOnTimeout` is set to `true`. |\n| `publishReport` | Enables test execution results to be published to Parasoft DTP. Set to `true` eanble. Default is `false`. |\n| `dtpUrl` | Specfies the URL of the Parasoft DTP server where test execution reports will be published if `publishReport` is set to `true`. |\n| `dtpUsername` | Specifies the user name for accessing Parasoft DTP server when publishing reports. Include this option if the target server requires authorization. |\n| `dtpPassword` | Specifies the password for accessing Parasoft DTP server when publishing reports. Include this option if the target server requires authorization. |\n| `dtpProject` | Specifies the name of the DTP project to associate with the test execution results. Include this option if `publishReport` is set to `true`. |\n| `buildId` | Specifies the build identifier used to filter test results in DTP. Include this option if `publishReport` is set to `true`. |\n| `sessionTag` | Specifies an identifier for the specific test execution session. Include this option if `publishReport` is set to `true`. |\n| `appendEnvironment` | Adds a test variable test environment name to the session tag when publishing to DTP. This enables you to aggregate test data according to execution environment, which can be displayed in DTP widgets and reports. Set to `true` to enable. Default is `false`. |\n\n## Build and Test this Action Locally\n\n1. Install the dependencies:\n\n```bash\n$ npm install\n```\n\n2. Build the typescript and package it for distribution:\n\n```bash\n$ npm run build \u0026\u0026 npm run package\n```\n\n3. Run the tests: \n\n```bash\n$ npm test\n\n PASS  ./index.test.js\n\n...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparasoft%2Fexecute-job-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparasoft%2Fexecute-job-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparasoft%2Fexecute-job-action/lists"}