mirror of
				https://github.com/actions/checkout.git
				synced 2025-11-04 06:41:56 +02:00 
			
		
		
		
	wrap submodule command PR test
This commit is contained in:
		
							parent
							
								
									5c3ccc22eb
								
							
						
					
					
						commit
						a395eb81ec
					
				
					 3 changed files with 11 additions and 5 deletions
				
			
		| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
## Submitting a pull request
 | 
					## Submitting a pull request
 | 
				
			||||||
 | 
					
 | 
				
			||||||
1. Fork and clone the repository
 | 
					1. Fork and clone the repository
 | 
				
			||||||
1. Configure and install the dependencies: `npm install`
 | 
					1. Configure and install the dependencies: `npm ci`
 | 
				
			||||||
1. Create a new branch: `git checkout -b my-branch-name`
 | 
					1. Create a new branch: `git checkout -b my-branch-name`
 | 
				
			||||||
1. Make your change, add tests, and make sure the tests still pass: `npm run test`
 | 
					1. Make your change, add tests, and make sure the tests still pass: `npm run test`
 | 
				
			||||||
1. Make sure your code is correctly formatted: `npm run format`
 | 
					1. Make sure your code is correctly formatted: `npm run format`
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										8
									
								
								dist/index.js
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								dist/index.js
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -7121,7 +7121,9 @@ class GitAuthHelper {
 | 
				
			||||||
                // Configure a placeholder value. This approach avoids the credential being captured
 | 
					                // Configure a placeholder value. This approach avoids the credential being captured
 | 
				
			||||||
                // by process creation audit events, which are commonly logged. For more information,
 | 
					                // by process creation audit events, which are commonly logged. For more information,
 | 
				
			||||||
                // refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing
 | 
					                // refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing
 | 
				
			||||||
                const output = yield this.git.submoduleForeach(`git config --local '${this.tokenConfigKey}' '${this.tokenPlaceholderConfigValue}' && git config --local --show-origin --name-only --get-regexp remote.origin.url`, this.settings.nestedSubmodules);
 | 
					                const output = yield this.git.submoduleForeach(
 | 
				
			||||||
 | 
					                // wrap the pipeline in quotes to make sure it's handled properly by submoduleForeach, rather than just the first part of the pipeline
 | 
				
			||||||
 | 
					                `"git config --local '${this.tokenConfigKey}' '${this.tokenPlaceholderConfigValue}' && git config --local --show-origin --name-only --get-regexp remote.origin.url"`, this.settings.nestedSubmodules);
 | 
				
			||||||
                // Replace the placeholder
 | 
					                // Replace the placeholder
 | 
				
			||||||
                const configPaths = output.match(/(?<=(^|\n)file:)[^\t]+(?=\tremote\.origin\.url)/g) || [];
 | 
					                const configPaths = output.match(/(?<=(^|\n)file:)[^\t]+(?=\tremote\.origin\.url)/g) || [];
 | 
				
			||||||
                for (const configPath of configPaths) {
 | 
					                for (const configPath of configPaths) {
 | 
				
			||||||
| 
						 | 
					@ -7288,7 +7290,9 @@ class GitAuthHelper {
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            const pattern = regexpHelper.escape(configKey);
 | 
					            const pattern = regexpHelper.escape(configKey);
 | 
				
			||||||
            yield this.git.submoduleForeach(`git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`, true);
 | 
					            yield this.git.submoduleForeach(
 | 
				
			||||||
 | 
					            // wrap the pipeline in quotes to make sure it's handled properly by submoduleForeach, rather than just the first part of the pipeline
 | 
				
			||||||
 | 
					            `"git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :"`, true);
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -157,7 +157,8 @@ class GitAuthHelper {
 | 
				
			||||||
      // by process creation audit events, which are commonly logged. For more information,
 | 
					      // by process creation audit events, which are commonly logged. For more information,
 | 
				
			||||||
      // refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing
 | 
					      // refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing
 | 
				
			||||||
      const output = await this.git.submoduleForeach(
 | 
					      const output = await this.git.submoduleForeach(
 | 
				
			||||||
        `git config --local '${this.tokenConfigKey}' '${this.tokenPlaceholderConfigValue}' && git config --local --show-origin --name-only --get-regexp remote.origin.url`,
 | 
					         // wrap the pipeline in quotes to make sure it's handled properly by submoduleForeach, rather than just the first part of the pipeline
 | 
				
			||||||
 | 
					         `"git config --local '${this.tokenConfigKey}' '${this.tokenPlaceholderConfigValue}' && git config --local --show-origin --name-only --get-regexp remote.origin.url"`,
 | 
				
			||||||
        this.settings.nestedSubmodules
 | 
					        this.settings.nestedSubmodules
 | 
				
			||||||
      )
 | 
					      )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -365,7 +366,8 @@ class GitAuthHelper {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const pattern = regexpHelper.escape(configKey)
 | 
					    const pattern = regexpHelper.escape(configKey)
 | 
				
			||||||
    await this.git.submoduleForeach(
 | 
					    await this.git.submoduleForeach(
 | 
				
			||||||
      `git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`,
 | 
					      // wrap the pipeline in quotes to make sure it's handled properly by submoduleForeach, rather than just the first part of the pipeline
 | 
				
			||||||
 | 
					      `"git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :"`,
 | 
				
			||||||
      true
 | 
					      true
 | 
				
			||||||
    )
 | 
					    )
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue