Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cda8841

Browse files
authored
Merge pull request #56 from ml-tooling/release/v0.10.4
2 parents eb5cc0b + c153a5e commit cda8841

File tree

116 files changed

+37233
-13982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+37233
-13982
lines changed

β€Ž.editorconfigβ€Ž

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_style = space
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
max_line_length = off
14+
trim_trailing_whitespace = false
15+
16+
[*.json]
17+
indent_size = 2
18+
19+
[*.{yaml,yml}]
20+
indent_size = 2
21+
22+
[*.py]
23+
indent_size = 4
24+
25+
[*.js]
26+
indent_size = 2
27+
28+
[*.jsx]
29+
indent_size = 2
30+
31+
[*.java]
32+
indent_size = 2

β€Ž.github/CODEOWNERSβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file provides an overview of code owners in this repository.
2+
3+
# Each line is a file pattern followed by one or more owners.
4+
# The last matching pattern has the most precedence.
5+
# For more details, read the following article on GitHub: https://help.github.com/articles/about-codeowners/.
6+
7+
# These are the default owners for the whole content of this repository. The default owners are automatically added as reviewers when you open a pull request, unless different owners are specified in the file.
8+
* @LukasMasuch @raethlein @JanKalkan

β€ŽCODE_OF_CONDUCT.mdβ€Ž renamed to β€Ž.github/CODE_OF_CONDUCT.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at mltooling.team@gmail.com. All
58+
reported by contacting the project team at team@mltooling.org. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

β€Ž.github/ISSUE_TEMPLATE/01_bug-report.mdβ€Ž

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "\U0001F6A8 Bug report"
2+
name: "\U0001F6A8 Bug Report"
33
about: Did you come across a bug or unexpected behaviour differing from the docs?
44
title: ''
55
labels: bug
@@ -10,9 +10,7 @@ assignees: ''
1010
<!--
1111
Thanks for reporting a bug πŸ™Œ ❀️
1212
13-
Before opening a new issue, please make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead.
14-
15-
Also, be sure to check our documentation first: https://github.com/ml-tooling/ml-workspace
13+
Before opening a new issue, please make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead. Also, be sure to check our documentation first: https://github.com/ml-tooling/ml-workspace
1614
-->
1715

1816
**Describe the bug:**

β€Ž.github/ISSUE_TEMPLATE/02_feature-request.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "\U0001F381 Feature request"
2+
name: "\U0001F381 Feature Request"
33
about: Do you have an idea for an improvement or a new feature?
44
title: ''
55
labels: feature-request
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM mltooling/build-environment:0.6.6
2+
3+
# Install basics
4+
# hadolint ignore=DL3005
5+
RUN apt-get update \
6+
&& apt-get install -y --no-install-recommends \
7+
openssh-client \
8+
# Clean up
9+
&& apt-get clean \
10+
&& rm -rf /var/lib/apt/lists/*
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "build-environment"
2+
description: "Environment to run build, test, check, and release steps."
3+
author: "ML Tooling <[email protected]>"
4+
inputs:
5+
build_args:
6+
description: "Build arguments passed to the build.py scripts"
7+
required: false
8+
working_directory:
9+
description: "Working directory from where the build command is run"
10+
required: false
11+
container_registry_url:
12+
description: "URL used for container registry login"
13+
required: false
14+
container_registry_username:
15+
description: "Username used for container registry login"
16+
required: false
17+
container_registry_password:
18+
description: "Password used for container registry login"
19+
required: false
20+
21+
runs:
22+
using: "docker"
23+
image: "Dockerfile"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
feature: ["feature/*", "feat/*", "enhancement/*"]
2+
bug: ["bugfix/*", "fix/*"]
3+
maintenance: ["maintenance/*", "chore/*", "refactoring/*", "test/*", "style/*"]
4+
documentation: ["documentation/*", "docs/*"]
5+
security: ["security/*"]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Add documentation label to any change in documentation related files
2+
documentation:
3+
- "docs/*"
4+
- "docs/**/*"
5+
- "README.md"
6+
- "**/README.md"
7+
- "CONTRIBUTING.md"
8+
9+
maintenance:
10+
- ".vscode/*"
11+
- ".vscode/**/*"
12+
- ".github/*"
13+
- ".github/**/*"
14+
- ".reuse/*"
15+
- "LICENSES/*"
16+
- ".editorconfig"
17+
- ".gitignore"
18+
- "**/.gitignore"
19+
- "build.py"
20+
- "**/build.py"

β€Ž.github/release-drafter.ymlβ€Ž

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name-template: "$RESOLVED_VERSION"
2+
tag-template: "v$RESOLVED_VERSION"
3+
categories:
4+
- title: "πŸ’₯ Breaking Changes"
5+
labels:
6+
- "breaking"
7+
- title: "🎁 Features & Improvements"
8+
labels:
9+
- "feature"
10+
- "enhancement"
11+
- title: "🚨 Bug Fixes"
12+
labels:
13+
- "bug"
14+
- title: "πŸ“ Documentation"
15+
labels:
16+
- "documentation"
17+
- title: "πŸ‘· Maintenance & Refactoring"
18+
labels:
19+
- "maintenance"
20+
- "refactoring"
21+
- title: "πŸ”’ Security"
22+
labels:
23+
- "security"
24+
- title: "⬆ Dependencies"
25+
labels:
26+
- "dependencies"
27+
#- title: "πŸ”₯ Removed"
28+
#- title: "⚑️ Performance"
29+
#- title: "βœ… Tests"
30+
#- title: "πŸ’‘ New Features"
31+
#- title: "🧰 Maintenance"
32+
#- title: "⚠️ Deprecations"
33+
#- title: "✨ New Features"
34+
exclude-labels:
35+
- "skip changelog"
36+
change-template: "- $TITLE (#$NUMBER) by @$AUTHOR"
37+
replacers:
38+
- search: '/(?:and)?(,)?(\s)*@github-actions(?:\[bot\])?,?/g'
39+
replace: ""
40+
template: |
41+
[![DockerHub Release](https://img.shields.io/docker/v/mltooling/ml-workspace/$RESOLVED_VERSION?label=docker%20version&color=blue)](https://hub.docker.com/repository/docker/mltooling/ml-workspace) [![DockerHub Image Size](https://img.shields.io/docker/image-size/mltooling/ml-workspace/$RESOLVED_VERSION?label=docker%20image%20size&color=blue)](https://hub.docker.com/repository/docker/mltooling/ml-workspace)
42+
43+
$CHANGES
44+
45+
## πŸ‘₯ Contributors
46+
47+
Thanks to $CONTRIBUTORS for the contributions.

0 commit comments

Comments
Β (0)