Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/devinpower/run-workflow-and-yield

A GitHub action to run and yield to remote workflows.
https://github.com/devinpower/run-workflow-and-yield

cicd github-actions

Last synced: 27 days ago
JSON representation

A GitHub action to run and yield to remote workflows.

Awesome Lists containing this project

README

        

# Overview

This action will run a workflow in a remote repostiory and then poll to see if that workflow has finished running.

| Parameter | Description |
| -------- | ------- |
| owner | Owner of the target repository |
| repostiory | Name of the repository |
| branch | Branch or tag name to run the workflow for |
| access-token | GitHub personal access token with read/write for actions |
| timeout | How long before the action will try before giving up |
| poll-interval | How often to check the status of the workflow |
| enable-logging | Whether or not to display debug information in the logs |

### Example usage
```yaml
- name: Sleep
uses: DevinPower/run-workflow-and-yield@main
with:
owner: 'DevinPower'
repostiory: 'run-workflow-and-yield'
branch: 'main'
access-token: 'my super secret key!'
timeout: 30 #minutes
poll-interval: 5 #seconds
enable-logging: true

```