@@ -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
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user