Merge branch 'master' into feature/bitbucket-cloud-discovery

This commit is contained in:
barticus
2021-09-02 21:00:10 +10:00
committed by GitHub
1230 changed files with 36875 additions and 11597 deletions
+5 -7
View File
@@ -108,13 +108,11 @@ matching repository is processed.
repository.
```typescript
const customRepositoryParser: BitbucketRepositoryParser = async function* customRepositoryParser({
client,
repository,
}) {
// Custom logic for interpret the matching repository.
// See defaultRepositoryParser for an example
};
const customRepositoryParser: BitbucketRepositoryParser =
async function* customRepositoryParser({ client, repository }) {
// Custom logic for interpret the matching repository.
// See defaultRepositoryParser for an example
};
const processor = BitbucketDiscoveryProcessor.fromConfig(env.config, {
parser: customRepositoryParser,