Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
: config.AZURE_PIPELINE_ACCESS_TOKEN
);
const hldPipeline = new AzureDevOpsPipeline(
config.AZURE_ORG,
config.AZURE_PROJECT,
true,
config.AZURE_PIPELINE_ACCESS_TOKEN
);
const clusterPipeline = new AzureDevOpsPipeline(
config.AZURE_ORG,
config.AZURE_PROJECT,
false,
config.AZURE_PIPELINE_ACCESS_TOKEN
);
if (config.MANIFEST && config.GITHUB_MANIFEST_USERNAME) {
const manifestRepo: IRepository = new GitHub(
config.GITHUB_MANIFEST_USERNAME,
config.MANIFEST,
config.MANIFEST_ACCESS_TOKEN
);
// const manifestRepo: Repository = new AzureDevOpsRepo(config.AZURE_ORG, config.AZURE_PROJECT, config.MANIFEST, config.MANIFEST_ACCESS_TOKEN);
manifestRepo.getManifestSyncState().then((syncCommits: any) => {
this.setState({ manifestSyncStatuses: syncCommits });
});
} else if (config.MANIFEST) {
const manifestRepo: IRepository = new AzureDevOpsRepo(
config.AZURE_ORG,
config.AZURE_PROJECT,
config.MANIFEST,
config.AZURE_PIPELINE_ACCESS_TOKEN
);
manifestRepo.getManifestSyncState().then((syncCommit: any) => {
public static getClusterSync = (callback?: (syncTag: ITag) => void): void => {
const manifestRepo: IRepository = new GitHub(
config.GITHUB_MANIFEST_USERNAME,
config.MANIFEST,
config.MANIFEST_ACCESS_TOKEN
);
manifestRepo.getManifestSyncState().then(syncTag => {
if (callback) {
callback(syncTag);
}
});
};