diff --git a/README.md b/README.md index e79c3f5..48a0c65 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,14 @@ the project now will utilize github actions as of 13 sept,2024. workflows should be saved in .github/workflows.filename should be descriptive of what the file serves with the extension .yml or yaml yaml is the markup language for configuration file. -* the first GitHub actions was setup.will be triggered on each pull request. \ No newline at end of file +* the first GitHub actions was setup.will be triggered on each pull request. +* task at hand: + - setting up labels each time a new issue is opened + - building and testing pull requests + + +- the workflow must contain atleast one event which will trigger the workflow.workflows are reusable. + - events could be push made to the main branch,issue opened or a release created. +- one or more jobs, which will have a series of steps and finally will be exceuted on a runner machine.jobs will run in parallel by default.use needs keyword for dependent jobs. +- the step will run a script or an action +