majikmate/Assignment Pull Request Creator
Scans for assignment folders and creates a pull request for each assignment. Supports dry-run mode to simulate operations without making changes.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| github-token | GitHub token for API access | yes | — |
| default-branch | Default branch to create pull requests against | no | main |
| assignment-regex | List of regular expressions - one per line - to match assignment paths and extract branch names using capturing groups. Use (?P<name>...) for named groups or (...) for unnamed groups. Named groups take priority when both are present. | no | ^assignments/(assignment-\d+)$ |
| hidden-paths-regex | List of regular expressions - one per line - to match folder paths that should be hidden. | no | ^.devcontainer$ ^.github$ |
| protected-paths-regex | List of regular expressions - one per line - to match folder paths that should be protected. | no | ^.devcontainer$ ^.github$ ^tutorials$ |
| dry-run | Simulate operations without actually creating branches or pull requests | no | false |
Outputs
| name | description |
|---|---|
| created-branches | List of branches created |
| created-pull-requests | List of pull requests created |