diff --git a/content/actions/using-workflows/workflow-syntax-for-github-actions.md b/content/actions/using-workflows/workflow-syntax-for-github-actions.md index 38a5c1ce42b2..02a986051d93 100644 --- a/content/actions/using-workflows/workflow-syntax-for-github-actions.md +++ b/content/actions/using-workflows/workflow-syntax-for-github-actions.md @@ -1088,12 +1088,12 @@ The characters `*`, `[`, and `!` are special characters in YAML. If you start a ```yaml # Valid -branches: +paths: - '**/README.md' # Invalid - creates a parse error that # prevents your workflow from running. -branches: +paths: - **/README.md # Valid