GitHub
docs.github.com › actions › writing-workflows
Writing workflows - GitHub Docs
Workflows automate tasks in your software development lifecycle. Many tasks that you manually complete can be converted to a GitHub Actions workflow.
GitHub
docs.github.com › actions › sharing-automations › creating-workflow-templates-for-your-organization
Creating workflow templates for your organization - GitHub Docs
This procedure demonstrates how to create a workflow template and metadata file. The metadata file describes how the workflow templates will be presented to users when they are creating a new workflow. If it doesn't already exist, create a new repository named .github in your organization.
Videos
22:28
Introduction to GitHub Actions - Part 1 - Your First GitHub Actions ...
08:05
Save Hours of Work With GitHub Workflows - YouTube
03:42:36
Complete GitHub Actions Course - From BEGINNER to PRO - YouTube
08:04
How to use GitHub Actions | GitHub for Beginners - YouTube
01:09:05
19 - Creación de Workflows en GitHub Actions desde Cero: Análisis ...
GitHub
docs.github.com › actions › using-workflows › about-workflows
Workflows - GitHub Docs
Workflows are defined in the .github/workflows directory in a repository.
GitHub
docs.github.com › en › actions › get-started › quickstart
Quickstart for GitHub Actions - GitHub Docs
GitHub provides preconfigured workflow templates that you can use as-is or customize to create your own workflow. GitHub analyzes your code and shows you workflow templates that might be useful for your repository.
GitHub
microsoft.github.io › code-with-engineering-playbook › CI-CD › gitops › github-workflows
GitHub Workflows - Engineering Fundamentals Playbook
A workflow is a configurable automated process made up of one or more jobs where each of these jobs can be an action in GitHub.
Medium
medium.com › @dmosyan › understanding-the-basics-of-github-actions-7787993d300c
Understanding the basics of GitHub Actions | by David Mosyan | Medium
July 17, 2024 - Actions This is the building block of the workflow. It’s a custom application for the GitHub platform. Use an action to help reduce the amount of repetitive code that you write in your workflow files. Think about that as a script that takes arguments, does something and produces the output.
GitHub
docs.github.com › actions › using-workflows › workflow-syntax-for-github-actions
Workflow syntax for GitHub Actions - GitHub Docs
A workflow is a configurable automated process made up of one or more jobs. You must create a YAML file to define your workflow configuration.
Stack Overflow
stackoverflow.com › questions › 79919760 › github-actions-workflow-not-scheduling-schedule-trigger-not-appearing
git - GitHub Actions workflow not scheduling (Schedule trigger not appearing) - Stack Overflow
Just to clarify a few assumptions: I’m assuming your workflow file is placed correctly under .github/workflows/ in the root of your repository. You should be able to see the workflow listed in the Actions tab → “All workflows” on the ...
GitHub
docs.github.com › en › actions › tutorials
Tutorials for GitHub Actions - GitHub Docs
Build skills and knowledge about GitHub Actions through hands-on activities. Creating an example workflow · Building and testing your code · Building and testing Go · Building and testing Java with Ant · Building and testing Java with Gradle · Building and testing Java with Maven ·
GitHub
docs.github.com › articles › getting-started-with-github-actions
Understanding GitHub Actions - GitHub Docs
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 ...
GitHub
docs.github.com › actions › deployment › about-deployments › deploying-with-github-actions
Deploying with GitHub Actions - GitHub Docs
You can also use cancel-in-progress to cancel any currently running job or workflow in the same concurrency group. name: Deployment concurrency: group: production cancel-in-progress: true on: push: branches: - main jobs: deployment: runs-on: ubuntu-latest environment: production steps: - name: deploy # ...deployment-specific steps · For guidance on writing deployment-specific steps, see Finding deployment examples. When a GitHub Actions workflow deploys to an environment, the environment is displayed on the main page of the repository.