Last updated: March 2026
GitHub Actions workflows in GitKraken Desktop are managed by editing the YAML files stored in your repository’s .github/workflows directory. As of GitKraken Desktop 11.10, workflow management is no longer available from the Left Panel, so use this page when you need the current file-based workflow for creating, editing, or deleting Actions definitions.
Requirements and limits
- GitKraken Desktop 11.10 and later manages workflows by editing files in your repository instead of using a Left Panel Actions view.
- Store workflow definitions in the repository’s
.github/workflowsdirectory. - Creating, editing, and deleting workflows requires staging and committing the YAML file changes.
- Existing GitHub Actions workflows continue to run after the Left Panel deprecation; only the management workflow changed.
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
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.
How to manage GitHub Actions 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.
How to 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.
How to edit a workflow
- Open the workflow file from your repository’s
.github/workflowsdirectory. - Make your changes.
- Stage and commit the updated file.
How 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.
Where to learn more about GitHub Actions syntax
For workflow syntax, best practices, and advanced automation examples, visit the GitHub Actions Documentation.