-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: finding variables and resolving identifiers works; started on s…
…etting values by identifier
- Loading branch information
1 parent
a92dcab
commit 21d0890
Showing
6 changed files
with
84 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
gitlab: | ||
#base_url: https://gitlab.example.com | ||
# | ||
# project_id: 1234 | ||
something: ${gitlab:base_url}/${gitlab:project_id} | ||
another: ${gitlab:base_url}/something/else | ||
evenMore: ${gitlab:project_id} | ||
foo: | ||
bar: baz | ||
this: | ||
- is | ||
- an | ||
base_url: https://gitlab.example.com | ||
project_id: 1234 | ||
something: ${gitlab:base_url}/${gitlab:project_id} | ||
another: ${gitlab:base_url}/something/else | ||
evenMore: ${gitlab:project_id} | ||
foo: | ||
- yay: ${gitlab:bar:2} | ||
- baz: ${gitlab:foo:1} | ||
- yay: baz | ||
- this: | ||
- is | ||
- an | ||
- value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.