From b52ea716ad3db7a7f8066439ce226e2f0b648b37 Mon Sep 17 00:00:00 2001 From: Mark Battistella Date: Thu, 3 Feb 2022 13:06:03 +1100 Subject: [PATCH 1/3] Update actions-scheduled-workflow-example.md The editor when changing a CRON time says the most frequent is 5 minutes. Either this section is incorrect or the editor pop over.. --- .../repositories/actions-scheduled-workflow-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/repositories/actions-scheduled-workflow-example.md b/data/reusables/repositories/actions-scheduled-workflow-example.md index d61c5baa10..408d023293 100644 --- a/data/reusables/repositories/actions-scheduled-workflow-example.md +++ b/data/reusables/repositories/actions-scheduled-workflow-example.md @@ -1,4 +1,4 @@ -You can schedule a workflow to run at specific UTC times using [POSIX cron syntax](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07). Scheduled workflows run on the latest commit on the default or base branch. The shortest interval you can run scheduled workflows is once every 15 minutes. +You can schedule a workflow to run at specific UTC times using [POSIX cron syntax](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07). Scheduled workflows run on the latest commit on the default or base branch. The shortest interval you can run scheduled workflows is once every 5 minutes. This example triggers the workflow every day at 5:30 and 17:30 UTC: From ae692632c67f0ecc788e4bd287ee70ad60955514 Mon Sep 17 00:00:00 2001 From: Marko Kaznovac Date: Tue, 8 Feb 2022 14:01:02 +0100 Subject: [PATCH 2/3] [Actions] `push` event does not have Activity types (#15124) --- .../actions/using-workflows/events-that-trigger-workflows.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/actions/using-workflows/events-that-trigger-workflows.md b/content/actions/using-workflows/events-that-trigger-workflows.md index 2a3cb344d0..e363ed7d91 100644 --- a/content/actions/using-workflows/events-that-trigger-workflows.md +++ b/content/actions/using-workflows/events-that-trigger-workflows.md @@ -917,8 +917,6 @@ on: ```yaml on: push: - types: - - opened branches: - 'releases/**' paths: @@ -960,8 +958,6 @@ on: ```yaml on: push: - types: - - opened branches: - 'releases/**' paths: From bc7e8b83c7343a35f53934bbb65c64a8072a6970 Mon Sep 17 00:00:00 2001 From: Anil Seervi <61609033+AnilSeervi@users.noreply.github.com> Date: Tue, 8 Feb 2022 18:38:51 +0530 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=93=9D=20Clarify=20usage=20of=20singl?= =?UTF-8?q?e=20quotes=20in=20string=20datatype=20for=20literals=20(#14895)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/actions/learn-github-actions/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/expressions.md b/content/actions/learn-github-actions/expressions.md index 536477355b..688638827a 100644 --- a/content/actions/learn-github-actions/expressions.md +++ b/content/actions/learn-github-actions/expressions.md @@ -55,7 +55,7 @@ As part of an expression, you can use `boolean`, `null`, `number`, or `string` d | `boolean` | `true` or `false` | | `null` | `null` | | `number` | Any number format supported by JSON. | -| `string` | You don't need to enclose strings in {% raw %}${{{% endraw %} and {% raw %}}}{% endraw %}. However, if you do, you must use single quotes around the string and escape literal single quotes with an additional single quote. | +| `string` | You don't need to enclose strings in `{% raw %}${{{% endraw %}` and `{% raw %}}}{% endraw %}`. However, if you do, you must use single quotes (`'`) around the string. To use a literal single quote, escape the literal single quote using an additional single quote (`''`). Wrapping with double quotes (`"`) will throw an error. | #### Example