Skip to content

Commit

Permalink
ci: some ci changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Sep 16, 2024
1 parent 01320c0 commit edcc6b8
Show file tree
Hide file tree
Showing 5 changed files with 274 additions and 168 deletions.
185 changes: 160 additions & 25 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,167 @@
# In some configurations (like Release Drafter), regex is enclosed with slashes (e.g., /build\/.+/), which signifies the start and end of the regular expression.
# However, in GitHub Actions' labeler.yml, you do not need to wrap your regex patterns in slashes. The tool expects just the regex itself, without the delimiters.

ansible:
- changed-files:
- any-glob-to-any-file:
- '.ansible-lint'
- 'ansible.cfg'
- 'ansible/*'
- 'molecule/*'

configuration:
- changed-files:
- any-glob-to-any-file:
- '.github/*yml'
- '.gitignore'
- '.gitattributes'
- '.vscode/*'
- '.devcontainer/*'
- '.editorconfig'
- '.yamllint.yml'
- '.ansible-lint'

docker:
- changed-files:
- any-glob-to-any-file:
- '**/Dockerfile'
- '**/docker-compose.yml'
- '**/docker-compose.yaml'
- '**/docker-compose.test.yml'

github:
- any:
- changed-files:
- any-glob-to-any-file:
- '.github/*'
- '!.github/workflows/'

source:
- all:
- changed-files:
- any-glob-to-any-file: 'src/**/*'
- all-globs-to-all-files: '!src/docs/*'

policy:
- changed-files:
- any-glob-to-any-file:
- '.github/ISSUE_TEMPLATE/*'
- '.github/PULL_TEMPLATE/*'
- 'LICENSE'
- 'SECURITY.md'

terraform:
- changed-files:
- any-glob-to-any-file:
- 'terraform/*'
- '**/*.tf'
- '**/*.lock.hcl'

vscode:
- changed-files:
- any-glob-to-any-file:
- '.vscode/*'

feature:
- head-branch: ['^feat/'] # Matches branch names starting with 'feat/'
bugfix:
- head-branch: ['^fix/'] # Matches branch names starting with 'fix/'
documentation:
- head-branch: ['^docs/']
- head-branch:
- '^(feat)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- src/*

ci-cd:
- head-branch:
- '^(ci)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- '.github/workflows/*'
- '.github/*'

devops:
- head-branch:
- '^(ci)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- 'deployments/*'
- '.github/workflows/*'
- '.github/*'
- 'terraform/*'
- '**/*.tf'
- '**/*.lock.hcl'
- '**/Dockerfile'
- '**/docker-compose.yml'
- '**/docker-compose.yaml'
- '**/docker-compose.test.yml'

style:
- head-branch: ['^style/']
refactor:
- head-branch: ['^refactor/']
test:
- head-branch: ['^test/']
# - changed-files:
# - any-glob-to-any-file: 'tests/*'
chore:
- head-branch: ['^chore/']
# - changed-files:
# - any-glob-to-any-file: 'readme.md'
# - any-glob-to-any-file: 'package.json'
- head-branch:
- '^(style)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- src/*

documentation:
- head-branch:
- '^(docs)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- '**/*.md'
- '**/*.rst'
- '**/*.txt'
- docs/**
- guides/*

performance:
- head-branch: ['^perf/']
ci:
- head-branch: ['^ci/']
# - changed-files:
# - any-glob-to-any-file: '.github/workflows/*'
- head-branch:
- '^(perf)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- src/*

bug:
- head-branch:
- '^(fix)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- src/*

enhancement:
- head-branch:
- '^(refactor)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- src/*

build:
- head-branch: ['^build/']
revert:
- head-branch: ['^revert/']
- head-branch:
- '^(build)(\([a-z ]+\))?\/.'

dependencies:
- head-branch:
- '^(build)(\([a-z ]+\))?\/.'

chore:
- head-branch:
- '^(chore)(\([a-z ]+\))?\/.'
- changed-files:
- all-globs-to-all-files: '!src/*'
- all-globs-to-all-files: '!tests/*'
- all-globs-to-all-files: '!.github/*'

test:
- head-branch:
- '^(test)(\([a-z ]+\))?\/.'
- changed-files:
- any-glob-to-any-file:
- 'test/*'
- 'molecule/*'
- 'docker-compose.test.yml'

minor:
- head-branch:
- '^(feat)(\([a-z ]+\))?\/.'

patch:
- head-branch:
- '^(fix)(\([a-z ]+\))?\/.'
- '^(ci)(\([a-z ]+\))?\/.'
138 changes: 69 additions & 69 deletions .github/multi-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,85 +3,85 @@
version: v1

labels:
- label: "feature"
matcher:
title: '^(feat)(\([a-z ]+\))?: .'
commits: '^(feat)(\([a-z ]+\))?: .'
branch: '(feat)(\([a-z ]+\))?\/.'
- label: "feature"
matcher:
title: '^(feat)(\([a-z ]+\))?: .'
commits: '^(feat)(\([a-z ]+\))?: .'
branch: '^(feat)(\([a-z ]+\))?\/.'

- label: "bug"
matcher:
title: '^(fix)(\([a-z ]+\))?: .'
commits: '^(fix)(\([a-z ]+\))?: .'
branch: '(fix)(\([a-z ]+\))?\/.'
- label: "bug"
matcher:
title: '^(fix)(\([a-z ]+\))?: .'
commits: '^(fix)(\([a-z ]+\))?: .'
branch: '^(fix)(\([a-z ]+\))?\/.'

- label: "chore"
matcher:
title: '^(chore)(\([a-z ]+\))?: .'
commits: '^(chore)(\([a-z ]+\))?: .'
branch: '(chore)(\([a-z ]+\))?\/.'
- label: "chore"
matcher:
title: '^(chore)(\([a-z ]+\))?: .'
commits: '^(chore)(\([a-z ]+\))?: .'
branch: '^(chore)(\([a-z ]+\))?\/.'

- label: "documentation"
matcher:
title: '^(docs)(\([a-z ]+\))?: .'
commits: '^(docs)(\([a-z ]+\))?: .'
branch: '(docs)(\([a-z ]+\))?\/.'
- label: "documentation"
matcher:
title: '^(docs)(\([a-z ]+\))?: .'
commits: '^(docs)(\([a-z ]+\))?: .'
branch: '^(docs)(\([a-z ]+\))?\/.'

- label: "devops"
matcher:
title: '^(ci)(\([a-z ]+\))?: .'
commits: '^(ci)(\([a-z ]+\))?: .'
branch: '(ci)(\([a-z ]+\))?\/.'
- label: "devops"
matcher:
title: '^(ci)(\([a-z ]+\))?: .'
commits: '^(ci)(\([a-z ]+\))?: .'
branch: '^(ci)(\([a-z ]+\))?\/.'

- label: "ci/cd"
matcher:
title: '^(ci)(\([a-z ]+\))?: .'
commits: '^(ci)(\([a-z ]+\))?: .'
branch: '(ci)(\([a-z ]+\))?\/.'
- label: "ci/cd"
matcher:
title: '^(ci)(\([a-z ]+\))?: .'
commits: '^(ci)(\([a-z ]+\))?: .'
branch: '^(ci)(\([a-z ]+\))?\/.'

- label: "enhancement"
matcher:
title: '^(refactor)(\([a-z ]+\))?: .'
commits: '^(refactor)(\([a-z ]+\))?: .'
branch: '(refactor)(\([a-z ]+\))?\/.'
- label: "enhancement"
matcher:
title: '^(refactor)(\([a-z ]+\))?: .'
commits: '^(refactor)(\([a-z ]+\))?: .'
branch: '^(refactor)(\([a-z ]+\))?\/.'

- label: "formatting"
matcher:
title: '^(style)(\([a-z ]+\))?: .'
commits: '^(style)(\([a-z ]+\))?: .'
branch: '(style)(\([a-z ]+\))?\/.'
- label: "formatting"
matcher:
title: '^(style)(\([a-z ]+\))?: .'
commits: '^(style)(\([a-z ]+\))?: .'
branch: '^(style)(\([a-z ]+\))?\/.'

- label: "performance"
matcher:
title: '^(perf)(\([a-z ]+\))?: .'
commits: '^(perf)(\([a-z ]+\))?: .'
branch: '(perf)(\([a-z ]+\))?\/.'
- label: "performance"
matcher:
title: '^(perf)(\([a-z ]+\))?: .'
commits: '^(perf)(\([a-z ]+\))?: .'
branch: '^(perf)(\([a-z ]+\))?\/.'

- label: "build"
matcher:
title: '^(build)(\([a-z ]+\))?: .'
commits: '^(build)(\([a-z ]+\))?: .'
branch: '(build)(\([a-z ]+\))?\/.'
- label: "build"
matcher:
title: '^(build)(\([a-z ]+\))?: .'
commits: '^(build)(\([a-z ]+\))?: .'
branch: '^(build)(\([a-z ]+\))?\/.'

- label: "test"
matcher:
title: '^(test)(\([a-z ]+\))?: .'
commits: '^(test)(\([a-z ]+\))?: .'
branch: '(test)(\([a-z ]+\))?\/.'
- label: "test"
matcher:
title: '^(test)(\([a-z ]+\))?: .'
commits: '^(test)(\([a-z ]+\))?: .'
branch: '^(test)(\([a-z ]+\))?\/.'

- label: "dependencies"
matcher:
title: '^build\(deps\): .'
commits: '^build\(deps\): .'
- label: "dependencies"
matcher:
title: '^build\(deps\): .'
commits: '^build\(deps\): .'

- label: "minor"
matcher:
title: '^(feat)(\([a-z ]+\))?: .'
commits: '^(feat)(\([a-z ]+\))?: .'
branch: '(feat)(\([a-z ]+\))?\/.'
- label: "minor"
matcher:
title: '^(feat)(\([a-z ]+\))?: .'
commits: '^(feat)(\([a-z ]+\))?: .'
branch: '^(feat)(\([a-z ]+\))?\/.'

- label: "patch"
matcher:
title: '^(fix)(\([a-z ]+\))?: .'
commits: '^(fix)(\([a-z ]+\))?: .'
branch: '(fix)(\([a-z ]+\))?\/.'
- label: "patch"
matcher:
title: '^(fix)(\([a-z ]+\))?: .'
commits: '^(fix)(\([a-z ]+\))?: .'
branch: '^(fix)(\([a-z ]+\))?\/.'
Loading

0 comments on commit edcc6b8

Please sign in to comment.