Merge pull request #24080 from stepstone-tech/catalog-module-bitbucket-server-filter-archived

Filter archived repositories on bitbucket server provider module added.
This commit is contained in:
Ben Lambert
2024-04-22 17:11:07 +02:00
committed by GitHub
10 changed files with 51 additions and 9 deletions
@@ -63,6 +63,7 @@ catalog:
filters: # optional
projectKey: '^apis-.*$' # optional; RegExp
repoSlug: '^service-.*$' # optional; RegExp
skipArchivedRepos: true # optional; boolean
schedule: # same options as in TaskScheduleDefinition
# supports cron, ISO duration, "human duration" as used in code
frequency: { minutes: 30 }
@@ -81,6 +82,8 @@ catalog:
Regular expression used to filter results based on the project key.
- **`repoSlug`** _(optional)_:
Regular expression used to filter results based on the repo slug.
- **`skipArchivedRepos`** _(optional)_:
Boolean flag to filter out archived repositories.
- **`schedule`**:
- **`frequency`**:
How often you want the task to run. The system does its best to avoid overlapping invocations.