Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nabim777/actions-hero


https://github.com/nabim777/actions-hero

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

## Components of github Actions:
### Events
1. `Pull Request`
2. `push(branch)`
3. `issues`-(created,closed, ..)

- Events are workflows which have at least one job
- Action are the bunch/pack of code that is designed to do some activity
- Here jobs which are also called runner which are run independently
- Jobs can run parallely since they are independent
- But step are run in sequencly one after another

## Terms
`workflow_dispatch` (it simply make UI in workflow to run)

## figure
![image](https://github.com/nabim777/actions-hero/assets/61624650/d281d2f9-1fe6-498b-90d1-c638a8781099)