1
0
mirror of synced 2025-12-22 19:34:15 -05:00
Files
docs/data/variables
Meg Bird f6027a3fab [GHES 3.1] GitHub Enterprise Server GA (#19573)
* remove RC banner

* archive RC release notes

* move it all over

* add xenserver deprecation warning

* Remove the check annotations known issue as it no longer applies

* Copied in my release notes from the spreadsheet, pending a couple more

* Add security release note

* Add changes field

* Fix spokesd linter warning

* Add quotes around the second changes bullet

* update with code scanning retraction

* move bug fixes around

* npm lint changes

* more lint checks

* update with bug fix

* reorganize a bit

* update typo

* add a few more edits

* update with mobile beta filtering

* fix formatting problems

* quotes

* update to fix linting errors

* Update data/release-notes/enterprise-server/3-1/0.yml

* update with @lucascosti's amazing feedback

* move security fixes out of changes

* pull out security fixes

* typo in security section

* move security fixes down

* Add the last two known bugfixes to the bugs section

* Adding known issue and rewriting a bug fix

* Adding known issue around using ghe-repo owner/reponame

Co-authored-by: Zachary Mark <zachary-mark@github.com>
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
Co-authored-by: Melanie Yarbrough <11952755+myarb@users.noreply.github.com>
Co-authored-by: Mike Surowiec <mikesurowiec@users.noreply.github.com>
Co-authored-by: Amy Burns <timeyoutakeit@github.com>
2021-06-03 12:09:43 -04:00
..
2021-04-06 09:11:34 +01:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00

Variables

Variables are short strings of reusable text.

The YAML files in this directory each contain multiple variables.

The path, filename, and keys within each YAML file determine what its path will be in the data object.

For example, given a file data/variables/foo/bar.yml:

# multiple short strings in one file
meaning_of_life: 42

# and they can be nested if needed
nested:
  values:
    too: Yes!

Its values would be accessible as:

{% data foo.bar.meaning_of_life %}

{% data foo.bar.nested.values.too %}