SKA: Relocate script v5.1 (#204563)

## Summary

Replace references in `.xml` and `.snap` files too (thanks @kapral18)
This commit is contained in:
Gerard Soldevila 2024-12-17 15:10:41 +01:00 committed by GitHub
parent 591d640b1f
commit 99a78366b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -46,8 +46,10 @@ export const EXTENSIONS = [
'mdz',
'asciidoc',
'sh',
'snap',
'ts',
'jsonc',
'xml',
'yaml',
'yml',
];

View file

@ -255,6 +255,8 @@ export const findAndRelocateModules = async (params: RelocateModulesParams, log:
log.info(`Access the PR at: https://github.com/elastic/kibana/pull/${prNumber}`);
} else {
log.info('TIP: Run the following command to quickly create a PR:');
log.info(`$ gh pr create -d -t "<title>" -F ${DESCRIPTION} -R elastic/kibana`);
log.info(
`$ gh pr create -d -B "${baseBranch}" -t "<title>" -F ${DESCRIPTION} -R elastic/kibana`
);
}
};