From efd8b48a3f4d3bc4fa2ee982ceebaf686aa82468 Mon Sep 17 00:00:00 2001 From: Felix Kaspar Date: Thu, 21 Dec 2023 15:59:08 +0100 Subject: [PATCH] Updated Readme with the new naming convention in workflow-actions --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 869fa0a6b..3c78eb5e8 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,13 @@ To create your own, you have to understand a few key features first. You can als "outputOptions": { "zip": false }, - "operations": [ + "actions": [ { "type": "extract", "values": { "pageIndexes": [0, 2] }, - "operations": [] + "actions": [] } ] } @@ -42,20 +42,20 @@ You can also nest workflows like this: "outputOptions": { "zip": false }, - "operations": [ + "actions": [ { "type": "extract", "values": { "pageIndexes": [0, 2] }, - "operations": [ + "actions": [ { "type": "impose", "values": { "nup": 2, // 2 pages of the input document will be put on one page of the output document. "format": "A4L" // A4L -> The page size of the Ouput will be an A4 in Landscape. You can also use other paper formats and "P" for portrait output. }, - "operations": [] + "actions": [] } ] }