From a65e3b3e02fa41a3418fc277c303ce85042460c4 Mon Sep 17 00:00:00 2001 From: eric sciple Date: Thu, 13 Feb 2020 21:29:54 -0500 Subject: [PATCH] revise adr to support submodules --- adrs/0153-checkout-v2.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/adrs/0153-checkout-v2.md b/adrs/0153-checkout-v2.md index 29cdb02d5..e860d3965 100644 --- a/adrs/0153-checkout-v2.md +++ b/adrs/0153-checkout-v2.md @@ -46,12 +46,16 @@ We want to take this opportunity to make behavioral changes, from v1. This docum lfs: description: 'Whether to download Git-LFS files' default: false + submodules: + description: > + Whether to checkout submodules: `true` to checkout submodules or `recursive` to + recursively checkout submodules. + default: 'false' ``` Note: - `persist-credentials` is new - `path` behavior is different (refer [below](#path) for details) -- `submodules` was removed (error if specified; add later if needed) ### Fallback to GitHub API @@ -59,7 +63,7 @@ When a sufficient version of git is not in the PATH, fallback to the [web API](h Note: - LFS files are not included in the archive. Therefore fail if LFS is set to true. -- Submodules are also not included in the archive. However submodules are not supported by checkout v2 anyway. +- Submodules are also not included in the archive. ### Persist credentials @@ -74,7 +78,6 @@ Note: - The auth header (stored in the repo's git config), is scoped to all of github `http.https://github.com/.extraheader` - Additional public remotes also just work. - If users want to authenticate to an additional private remote, they should provide the `token` input. - - Lines up if we add submodule support in the future. Don't need to worry about calculating relative URLs. Just works, although needs to be persisted in each submodule git config. - Users opt out of persisted credentials (`persist-credentials: false`), or can script the removal themselves (`git config --unset-all http.https://github.com/.extraheader`). ### Fetch behavior @@ -179,6 +182,15 @@ A better solution is: Given a source file path, walk up the directories until the first `.git/config` is found. Check if it matches the self repo (`url = https://github.com/OWNER/REPO`). If not, drop the source file path. +### Submodules + +With both PAT and SSH key support, we should be able to provide frictionless support for +submodules scenarios: recursive, non-recursive, relative submodule paths. + +When fetching submodules, follow the `fetch-depth` and `fetch-refs` settings. + +Credentials will be persisted in the submodules local git config too. + ### Port to typescript The checkout action should be a typescript action on the GitHub graph, for the following reasons: