Skip to content

Commit ed9bd14

Browse files
authored
Merge pull request #57032 from github/repo-sync
Repo sync
2 parents e0a2c31 + 4bb21ce commit ed9bd14

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

content/actions/how-tos/write-workflows/choose-what-workflows-do/pass-job-outputs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ redirect_from:
2323
job1:
2424
runs-on: ubuntu-latest
2525
outputs:
26-
output1: ${{ steps.step1.outputs.test }}
27-
output2: ${{ steps.step2.outputs.test }}
26+
output1: {% raw %}${{ steps.step1.outputs.test }}{% endraw %}
27+
output2: {% raw %}${{ steps.step2.outputs.test }}{% endraw %}
2828
steps:
2929
- id: step1
3030
run: echo "test=hello" >> "$GITHUB_OUTPUT"
@@ -52,8 +52,8 @@ redirect_from:
5252
needs: job1
5353
steps:
5454
- env:
55-
OUTPUT1: ${{needs.job1.outputs.output1}}
56-
OUTPUT2: ${{needs.job1.outputs.output2}}
55+
OUTPUT1: {% raw %}${{needs.job1.outputs.output1}}{% endraw %}
56+
OUTPUT2: {% raw %}${{needs.job1.outputs.output2}}{% endraw %}
5757
run: echo "$OUTPUT1 $OUTPUT2"
5858
```
5959

content/contributing/writing-for-github-docs/using-yaml-frontmatter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ For more information, see [AUTOTITLE](/contributing/syntax-and-versioning-for-gi
102102

103103
* Purpose: Set a human-friendly title for use in the rendered page's `<title>` tag and an `h1` element at the top of the page.
104104
* Type: `String`
105-
* Optional. If omitted, the page `<title>` will still be set, albeit with a generic value like `GitHub.com` or `GitHub Enterprise`.
105+
* **Required**.
106106

107107
### `shortTitle`
108108

0 commit comments

Comments
 (0)