From e84a3278b0ac40563d9df35d8d6625387b26bc09 Mon Sep 17 00:00:00 2001 From: Dominik Hajduk Date: Tue, 3 Jan 2017 22:08:20 +0100 Subject: [PATCH] Add marking_store to state machine configuration example --- workflow/state-machines.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/workflow/state-machines.rst b/workflow/state-machines.rst index 238397b7a37..958745783e4 100644 --- a/workflow/state-machines.rst +++ b/workflow/state-machines.rst @@ -32,17 +32,21 @@ Below is the configuration for the pull request state machine. framework: workflows: pull_request: - type: 'state_machine' - supports: + type: 'state_machine' + supports: - AppBundle\Entity\PullRequest - places: + marking_store: + type: 'single_state' + arguments: + - 'currentPlace' + places: - start - coding - travis - review - merged - closed - transitions: + transitions: submit: from: start to: travis