Skip to content

Commit 793399b

Browse files
committed
chore: initial setup
0 parents  commit 793399b

Some content is hidden

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

66 files changed

+15494
-0
lines changed

.act-env-public

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GITHUB_WORKFLOW_RUNTIME=ACT

.copier-answers.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
_commit: v1.2.0
2+
_src_path: git@github.com:aignostics/foundry-python.git
3+
author_email: oliver.meyer@aignostics.com
4+
author_github_username: olivermeyer
5+
author_name: Oliver Meyer
6+
distribution_name: aignostics-foundry-core
7+
github_repository_name: foundry-python-core
8+
import_package_name: aignostics_foundry_core
9+
project_description: Foundational infrastructure for Foundry components.
10+
project_icon: 🏭
11+
project_name: Foundry Python Core
12+
slack_notifications_enabled: true
13+
slack_release_channel: '#announce-foundry'

.cz-templates/CHANGELOG.md.j2

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{% for entry in tree %}
2+
3+
## {{ entry.version }}{% if entry.date %} ({{ entry.date }}){% endif %}
4+
5+
{% for change_key, changes in entry.changes.items() %}
6+
7+
{% if change_key %}
8+
### {{ change_key }}
9+
{% endif %}
10+
11+
{% for change in changes %}
12+
{% if change.scope %}
13+
- **{{ change.scope }}**: {{ change.message }} ([{{ change.sha1[:7] }}](https://github.com/aignostics/foundry-python-core/commit/{{ change.sha1 }}))
14+
{% elif change.message %}
15+
- {{ change.message }} ([{{ change.sha1[:7] }}](https://github.com/aignostics/foundry-python-core/commit/{{ change.sha1 }}))
16+
{% endif %}
17+
{% endfor %}
18+
{% endfor %}
19+
{% endfor %}

.cz-templates/version.md.j2

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{% if previous_version %}
2+
## [{{ version }}](https://github.com/aignostics/foundry-python-core/compare/{{ previous_version }}..{{ version }}) - {{ date }}
3+
{% else %}
4+
## [{{ version }}] - {{ date }}
5+
{% endif %}
6+
{% if sections %}
7+
{% for section in sections %}
8+
{% if section.name == "feat" %}
9+
### Features
10+
{% elif section.name == "fix" %}
11+
### Bug Fixes
12+
{% elif section.name == "docs" %}
13+
### Documentation
14+
{% elif section.name == "perf" or section.name == "performance" %}
15+
### Performance
16+
{% elif section.name == "refactor" %}
17+
### Refactor
18+
{% elif section.name == "style" %}
19+
### Styling
20+
{% elif section.name == "test" %}
21+
### Testing
22+
{% elif section.name == "sec" or section.name == "security" %}
23+
### Security
24+
{% elif section.name == "build" or section.name == "ci" or section.name == "chore" %}
25+
### Miscellaneous Tasks
26+
{% elif section.name == "revert" %}
27+
### Revert
28+
{% else %}
29+
### {{ section.name | title }}
30+
{% endif %}
31+
{% for commit in section.commits %}
32+
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}{% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | capitalize }} - ([{{ commit.short_hash }}](https://github.com/aignostics/foundry-python-core/commit/{{ commit.hash }}))
33+
{% endfor %}
34+
35+
{% endfor %}
36+
{% endif %}

0 commit comments

Comments
 (0)