Skip to content

Commit 1d3e535

Browse files
authored
Merge branch 'main' into repo-sync
2 parents 7a500ad + b2120df commit 1d3e535

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

content/actions/learn-github-actions/expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ As part of an expression, you can use `boolean`, `null`, `number`, or `string` d
5555
| `boolean` | `true` or `false` |
5656
| `null` | `null` |
5757
| `number` | Any number format supported by JSON. |
58-
| `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. |
58+
| `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. |
5959

6060
#### Example
6161

content/actions/using-workflows/events-that-trigger-workflows.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -917,8 +917,6 @@ on:
917917
```yaml
918918
on:
919919
push:
920-
types:
921-
- opened
922920
branches:
923921
- 'releases/**'
924922
paths:
@@ -960,8 +958,6 @@ on:
960958
```yaml
961959
on:
962960
push:
963-
types:
964-
- opened
965961
branches:
966962
- 'releases/**'
967963
paths:

data/reusables/repositories/actions-scheduled-workflow-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
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.
1+
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.
22

33
This example triggers the workflow every day at 5:30 and 17:30 UTC:
44

0 commit comments

Comments
 (0)