From 49923e606441db1832a18d2137584d643cd186a1 Mon Sep 17 00:00:00 2001 From: erezrokah Date: Mon, 13 Jan 2020 15:10:26 +0200 Subject: [PATCH] docs: update beta docs --- website/content/docs/beta-features.md | 10 ++++++++++ website/content/docs/configuration-options.md | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/website/content/docs/beta-features.md b/website/content/docs/beta-features.md index 685c1b4ea95c..11c95b5ad0bf 100644 --- a/website/content/docs/beta-features.md +++ b/website/content/docs/beta-features.md @@ -8,6 +8,16 @@ We run new functionality in an open beta format from time to time. That means th **Use these features at your own risk.** +## GitLab and BitBucket editorial workflow support + +You can enable the Editorial Workflow with the following line in your Netlify CMS `config.yml` file: + +```yaml +publish_mode: editorial_workflow +``` + +In order to track unpublished entries statuses the GitLab implementation uses merge requests labels and the BitBucket implementation uses pull requests comments. + ## GitHub GraphQL API Experimental support for GitHub's [GraphQL API](https://developer.github.com/v4/) is now available for the GitHub backend. diff --git a/website/content/docs/configuration-options.md b/website/content/docs/configuration-options.md index cbcd0d9f240d..51babc703d1b 100644 --- a/website/content/docs/configuration-options.md +++ b/website/content/docs/configuration-options.md @@ -43,7 +43,7 @@ From a technical perspective, the workflow translates editor UI actions into com | Actions in Netlify UI ... | Perform these Git actions | | ------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| Save draft | Commits to a new branch (named according to the pattern `cms/collectionName-entrySlug`), and opens a pull request | +| Save draft | Commits to a new branch (named according to the pattern `cms/collectionName/entrySlug`), and opens a pull request | | Edit draft | Pushes another commit to the draft branch/pull request | | Approve and publish draft | Merges pull request and deletes branch |