Last updated: March 2026
GitHub Actions is a service from GitHub that lets you automate tasks in your repository using workflow files. These workflows are written in YAML and stored in the .github/workflows directory of your repository.
Deprecation notice 🧟 — GitKraken Desktop 11.10: GitHub Actions has been removed from the Left Panel to simplify navigation. Existing workflows will continue to run normally. To update workflow files, edit and commit them directly within your repository.
Quick Start
Create and edit GitHub Actions workflow files directly in your repository from within GitKraken Desktop.
To create a workflow:
- In your repository, create a
.github/workflowsdirectory if one does not already exist. - Add a new YAML workflow file to that directory.
- Stage and commit the file. GitHub Actions detects and registers the workflow automatically.
To edit an existing workflow:
- Open the workflow file from your repository’s
.github/workflowsdirectory. - Make your changes, then stage and commit them.
To delete a workflow:
- Delete the workflow YAML file from your repository’s
.github/workflowsdirectory. - Stage and commit the deletion. GitHub Actions stops running the deleted workflow.
For workflow syntax, triggers, and advanced configuration options, refer to the GitHub Actions Documentation.
Managing Workflows in GitKraken Desktop
As of version 11.10, GitHub Actions workflow management is handled by editing YAML files directly in your repository’s .github/workflows directory.
Create a Workflow
- Navigate to your repository’s
.github/workflowsdirectory. Create it if it does not already exist. - Add a new YAML file for your workflow.
- Stage and commit the file. GitHub Actions automatically detects and registers the new workflow.
Edit a Workflow
- Open the workflow file from your repository’s
.github/workflowsdirectory. - Make your changes.
- Stage and commit the updated file.
Delete a Workflow
- Delete the workflow YAML file from your repository’s
.github/workflowsdirectory. - Stage and commit the deletion. GitHub Actions stops running the deleted workflow.
Learn More
For workflow syntax, best practices, and advanced automation examples, visit the GitHub Actions Documentation.