Skip to content

Commit

Permalink
Add optional .ansible to regex
Browse files Browse the repository at this point in the history
Added optional `.ansible` to regex, and merged all regex's into one.
  • Loading branch information
Tinyblargon authored Dec 20, 2023
1 parent d2536a7 commit ed5193a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/ansible-galaxy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export { extractPackageFile } from './extract';
export const categories: Category[] = ['ansible', 'iac'];

export const defaultConfig = {
fileMatch: ['(^|/)requirements\\.ya?ml$', '(^|/)galaxy\\.ya?ml$'],
fileMatch: ['(^|/)(galaxy|requirements)(\\.ansible)?\\.ya?ml$'],
};

export const supportedDatasources = [
Expand Down

0 comments on commit ed5193a

Please sign in to comment.