-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update pr labeller workflow syntax
- Loading branch information
1 parent
680be72
commit e7d5d27
Showing
2 changed files
with
29 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,28 @@ | ||
"devops": | ||
- ".github/**/*" | ||
- "Dockerfile" | ||
- "*entrypoint.sh" | ||
- "Makefile" | ||
"dependency": | ||
- "pyproject.toml" | ||
- "pdm.lock" | ||
"documentation": | ||
- "docs/**/*" | ||
- "mkdocs.yml" | ||
- "README.md" | ||
"version": | ||
- "osm_rawdata/__version__.py" | ||
bug: | ||
# Branch starts with `fix` or has a `fix` in the name | ||
- head-branch: ["^fix", "fix"] | ||
enhancement: | ||
- head-branch: | ||
["^feature", "feature", "^feat", "feat", "^refactor", "refactor"] | ||
devops: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .github/** | ||
- Dockerfile | ||
- ./*entrypoint.sh | ||
- Makefile | ||
dependency: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pyproject.toml | ||
- pdm.lock | ||
docs: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docs/** | ||
- mkdocs.yml | ||
- ./*entrypoint.sh | ||
- README.md | ||
version: | ||
- changed-files: | ||
- any-glob-to-any-file: osm_rawdata/__version__.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters