diff --git a/content/docs/editorial-workflows.md b/content/docs/editorial-workflows.md index 3ec70244..27e31b25 100644 --- a/content/docs/editorial-workflows.md +++ b/content/docs/editorial-workflows.md @@ -4,7 +4,6 @@ weight: 20 title: Editorial Workflows --- - By default, saving a post in the CMS interface pushes a commit directly to the publication branch specified in `backend`. However, you also have the option to edit the [Publish Mode](../configuration-options/#publish-mode), which adds an interface for drafting, reviewing, and approving posts. To do this, add the following line to your Decap CMS `config.yml`: ```yaml @@ -12,6 +11,16 @@ By default, saving a post in the CMS interface pushes a commit directly to the p publish_mode: editorial_workflow ``` +You can select the initial status 3.1.6 with the following line in your config file: + +```yaml +default_workflow_status: 'draft' +``` + +There are the 3 available options: `'draft' | 'pending_review' | 'pending_publish'`. + +### Git operations under the hood + From a technical perspective, the workflow translates editor UI actions into common Git commands: | Actions in Netlify UI | Perform these Git actions |