From 1f8e017ab8f37a3dbe7c5110314ac1aab5e5465d Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Sat, 19 Sep 2020 07:56:36 +0200 Subject: [PATCH 1/5] Mention string length limitations --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9d95c82..3d17019 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,10 @@ The following payload will succeed. client-payload: '{"github": ${{ toJson(github) }}}' ``` +Additionally there is a limitation regarding the maximun length of strings, you are allowed to pass within `client-payload`. +This might get into your way when you try to pass a Pull Request body. +In this cases you might consider truncating the overlong strings. + ## License [MIT](LICENSE) From 6de120f0cac7373631c100e2129832828c01b20c Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Sat, 19 Sep 2020 07:58:31 +0200 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d17019..e9636a7 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ client-payload: '{"github": ${{ toJson(github) }}}' Additionally there is a limitation regarding the maximun length of strings, you are allowed to pass within `client-payload`. This might get into your way when you try to pass a Pull Request body. -In this cases you might consider truncating the overlong strings. +In this cases you might consider truncating the overlong strings, because otherwise your action will be interrupted with a `client_payload is too large` error. ## License From 1b0d3fa47b719b508ac5538031cbb2738d650a2e Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Sat, 19 Sep 2020 07:59:30 +0200 Subject: [PATCH 3/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9636a7..0713897 100644 --- a/README.md +++ b/README.md @@ -107,8 +107,8 @@ The following payload will succeed. client-payload: '{"github": ${{ toJson(github) }}}' ``` -Additionally there is a limitation regarding the maximun length of strings, you are allowed to pass within `client-payload`. -This might get into your way when you try to pass a Pull Request body. +Additionally there is a limitation regarding the maximum length of strings, you are allowed to pass within `client-payload`. +This might get into your way when you e.g. try to pass a Pull Request body. In this cases you might consider truncating the overlong strings, because otherwise your action will be interrupted with a `client_payload is too large` error. ## License From f131b1d1f954bcf74d798b13c3ebe9122581d16a Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Wed, 23 Sep 2020 18:13:56 +0200 Subject: [PATCH 4/5] Update README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 0713897..3aec2e4 100644 --- a/README.md +++ b/README.md @@ -107,10 +107,7 @@ The following payload will succeed. client-payload: '{"github": ${{ toJson(github) }}}' ``` -Additionally there is a limitation regarding the maximum length of strings, you are allowed to pass within `client-payload`. -This might get into your way when you e.g. try to pass a Pull Request body. -In this cases you might consider truncating the overlong strings, because otherwise your action will be interrupted with a `client_payload is too large` error. - +Additionally, there is a limitation on the total data size of the `client-payload`. A very large payload may result in a `client_payload is too large` error. ## License [MIT](LICENSE) From 111788c69643da928a660e954f472eba488d6cee Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Wed, 23 Sep 2020 18:14:20 +0200 Subject: [PATCH 5/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3aec2e4..762327a 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,7 @@ client-payload: '{"github": ${{ toJson(github) }}}' ``` Additionally, there is a limitation on the total data size of the `client-payload`. A very large payload may result in a `client_payload is too large` error. + ## License [MIT](LICENSE)