Changelog
This 1.2.0 release introduces an exclude
option for repositories that should be excluded from the organization workflows. Pushes to excluded repositories will not trigger Action runs via this GitHub App. (normal action runs will continue to work)
Before this release the app would by default not run central workflows for the repository they were defined in. With the new include_workflows_repository
option you can include this repository.
New config settings:
include_workflows_repository
: Whether to run these checks for the central workflows_repository. (default: false
)
exclude.repositories
: Repositories that are excluded and should not trigger organization workflows. Accepts wildcards (default: []
)
example config:
workflows_repository: our-organization-workflows
include_workflows_repository: false,
exclude:
repositories:
- do_not_run_check_for_this_repo
- 'playground-*'
- test_repository
- '*-foobar'