Skip to content

fix: testing removing synchronize #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
# actually creating releases for terraform modules in this primary github action
# repository. Thus, we ensure that the "closed" option is not present. Separately,
# we test the action as designed in a separate terraform-module repository.
types: [opened, edited, synchronize]
types: [opened, reopened, synchronize, closed]
branches:
- main

Expand Down
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ export async function run(): Promise<void> {
throw error;
}
} else {
console.log('>>');
/*
await createTaggedRelease(terraformChangedModules);
await deleteLegacyTerraformModuleTagsAndReleases(terraformModuleNamesToRemove, allTags, allReleases);

Expand All @@ -125,7 +127,7 @@ export async function run(): Promise<void> {
installTerraformDocs(terraformDocsVersion);
checkoutWiki();
updateWiki(terraformModules);
}
}*/
}
} catch (error) {
if (error instanceof Error) {
Expand Down
Loading