-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DEV] Automatic Labeling of Pull Requests v0.10.1
Cookiecutter Python Package v0.10.1 Release
- Loading branch information
Showing
6 changed files
with
49 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Pull Request Labeling Rules based on changed files | ||
|
||
# Add 'ci' label to any change within the '.github' dir | ||
ci: | ||
- any: ['.github/*', '.github/**/*'] | ||
|
||
|
||
# Add 'template' label to any change within the 'src/cookiecutter_python' dir | ||
# Currently, this is where the cookiecutter template (cookiecutter.json, hooks, etc) is | ||
template: | ||
- any: ['src/cookiecutter_python/*', 'src/cookiecutter_python/**/*'] | ||
|
||
|
||
# Add 'docs' label to any change within the 'docs' dir | ||
docs: | ||
- any: ['docs/*', 'docs/**/*'] | ||
|
||
|
||
# Add 'test' label to any change within the 'tests' dir | ||
test: | ||
- any: ['tests/*', 'tests/**/*'] |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
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
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
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,7 +1,7 @@ | ||
[metadata] | ||
## Setuptools specific information | ||
name = cookiecutter_python | ||
version = 0.10.0 | ||
version = 0.10.1 | ||
# renders on pypi as subtitle | ||
description = Yet another modern Python Package (pypi) with emphasis in CI/CD and automation | ||
long_description = file: README.rst | ||
|
@@ -15,7 +15,7 @@ author_email = [email protected] | |
# represents the web home page of the project | ||
url = https://github.com/boromir674/cookiecutter-python-package | ||
|
||
download_url = https://github.com/boromir674/cookiecutter-python-package/archive/v0.10.0.tar.gz | ||
download_url = https://github.com/boromir674/cookiecutter-python-package/archive/v0.10.1.tar.gz | ||
|
||
## PyPi specific information | ||
project_urls = | ||
|
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 +1 @@ | ||
__version__ = '0.10.0' | ||
__version__ = '0.10.1' |