Editorial Workflow is not available for the Gitea backend.
By default, all entries created or edited in Static CMS are committed directly into the main repository branch.
The publish_mode
option allows you to enable “Editorial Workflow” mode for more control over the content publishing phases. The unpublished entries will be arranged on a dashboard, in Static CMS, according to their status (Draft, Ready for Review, Ready To Publish). This allows for quick access to unpublished entries, allowing them to be reviewed and edited before going live.
You can enable the Editorial Workflow with the following line in your config.yml
file:
publish_mode: editorial_workflow
publish_mode: 'editorial_workflow';
From a technical perspective, the workflow translates editor UI actions into common Git commands:
Actions in Netlify UI 17370_81372b-ab> |
Perform these Git actions 17370_d603c4-d9> |
---|---|
Save draft 17370_6cd964-dc> |
Commits to a new branch (named according to the pattern |
Edit draft 17370_7d3326-1b> |
Pushes another commit to the draft branch and pull/merge request 17370_177c4a-37> |
Approve and publish draft 17370_d00d4d-76> |
Merges pull/merge request and deletes branch 17370_8484bb-39> |