Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/veeravarapu-saikiran/github-actions
Github actions can be used as your CI/CD tool to automate the building and deploy process.
https://github.com/veeravarapu-saikiran/github-actions
actions github-hosted-runners jobs on run runs-on self-hosted-runner steps workflows
Last synced: 5 days ago
JSON representation
Github actions can be used as your CI/CD tool to automate the building and deploy process.
- Host: GitHub
- URL: https://github.com/veeravarapu-saikiran/github-actions
- Owner: Veeravarapu-SaiKiran
- Created: 2025-01-23T14:11:31.000Z (14 days ago)
- Default Branch: main
- Last Pushed: 2025-01-31T10:22:11.000Z (6 days ago)
- Last Synced: 2025-01-31T10:23:06.837Z (6 days ago)
- Topics: actions, github-hosted-runners, jobs, on, run, runs-on, self-hosted-runner, steps, workflows
- Language: Python
- Homepage: https://docs.github.com/en/actions
- Size: 2.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github-Actions
Read Docs: https://docs.github.com/en/actions/about-github-actions/understanding-github-actions
## Overview
* GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.* GitHub Actions goes beyond just DevOps and lets you run workflows when other events happen in your repository. For example, you can run a workflow to automatically add the appropriate labels whenever someone creates a new issue in your repository.
* GitHub provides Linux, Windows, and macOS virtual machines to run your workflows, or you can host your own self-hosted runners in your own data center or cloud infrastructure.
## Workflow
* A workflow is a configurable automated process which runs one or more jobs.
* Workflows are defined by a YAML file checked in to your repository.
* In your repository workflows should be located in following directory: .github/workflows
* Name of the workflow can be defined by using "name" property.
* name: Sample workflow example### Workflow triggers are events that cause a workflow to run:
* Events that occur in your workflow's repository
* Events that occur outside of Github and trigger a repository_dispatch event on github
* Scheduled times
* manual# JAVA with Maven project
https://github.com/Veeravarapu-SaiKiran/Java-Maven