feat!: support multiple GitHub repositories with array-based configuration#6
Merged
feat!: support multiple GitHub repositories with array-based configuration#6
Conversation
…tion - Replace github_repo (string) with github_repos (list) for multiple repository support - Update IAM role policy to generate statements for each repository using for expression - Add fallback to allow all organization repos when github_repos is empty - Update documentation with simplified examples and clearer variable descriptions - Update example configuration to use new github_repos parameter
github-actions bot
pushed a commit
that referenced
this pull request
Oct 2, 2025
## [2.0.0](v1.0.1...v2.0.0) (2025-10-02) ### ⚠ BREAKING CHANGES * support multiple GitHub repositories with array-based configuration (#6) ### Features * support multiple GitHub repositories with array-based configuration ([#6](#6)) ([deaa548](deaa548)) ### Bug Fixes * missing terraform ([69d87ca](69d87ca)) * remove unnecessary npm cache ([#7](#7)) ([cd85a06](cd85a06))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR enhances the module to support multiple GitHub repositories through an array-based configuration, replacing the single repository approach.
Changes
github_repo(string) withgithub_repos(list of strings)forexpressiongithub_reposis emptygithub_reposparameterMigration
Users need to update their configuration from:
To:
Backward Compatibility
While this is a breaking change in terms of variable names, the functionality is enhanced:
github_repos = ["repo1"]github_repos = ["repo1", "repo2", "repo3"]github_reposparameter (same as before)