Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ The `prepare_job` command is called when a job is started. {% data variables.pro
"state": {},
"args": {
"jobContainer": {
"image": "node:18"
"image": "node:18",
"workingDirectory": "/__w/octocat-test2/octocat-test2",
"createOptions": "--cpus 1",
"environmentVariables": {
Expand Down
10 changes: 5 additions & 5 deletions content/actions/reference/workflows-and-actions/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,18 +412,18 @@ You may also use the `*` syntax on an object. For example, suppose you have an o
"scallions":
{
"colors": ["green", "white", "red"],
"ediblePortions": ["roots", "stalks"],
"ediblePortions": ["roots", "stalks"]
},
"beets":
{
"colors": ["purple", "red", "gold", "white", "pink"],
"ediblePortions": ["roots", "stems", "leaves"],
"ediblePortions": ["roots", "stems", "leaves"]
},
"artichokes":
{
"colors": ["green", "purple", "red", "black"],
"ediblePortions": ["hearts", "stems", "leaves"],
},
"ediblePortions": ["hearts", "stems", "leaves"]
}
}
```

Expand All @@ -434,7 +434,7 @@ The filter `vegetables.*.ediblePortions` could evaluate to:
[
["roots", "stalks"],
["hearts", "stems", "leaves"],
["roots", "stems", "leaves"],
["roots", "stems", "leaves"]
]
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ If you do provide the `repository` key in your `package.json` file, then the rep
"repository": {
"type": "git",
"url": "https://github.com/octocat/my-other-repo.git"
},
}
}
```

Expand Down
2 changes: 1 addition & 1 deletion content/copilot/concepts/agents/hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ You configure hooks using a special JSON format. The JSON must contain a `versio
"env": { "KEY": "value" },
"timeoutSec": 30
}
],
]
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion content/rest/using-the-rest-api/github-event-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Link: <https://api.github.com/resource?page=2>; rel="next",
"gravatar_id": "",
"url": "https://api.github.com/orgs/github",
"avatar_url": "https://github.com/images/error/octocat_happy.gif"
},
}
}
]
```
Expand Down
Loading