Skip to content

Commit ddd6f6d

Browse files
authored
Initial commit
0 parents  commit ddd6f6d

File tree

10 files changed

+125
-0
lines changed

10 files changed

+125
-0
lines changed

β€Ž.editorconfigβ€Ž

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2
16+
17+
[docker-compose.yml]
18+
indent_size = 4

β€Ž.github/FUNDING.ymlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: yuges-code
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: "Update Changelog"
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
update:
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 5
11+
12+
permissions:
13+
contents: write
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
with:
19+
ref: ${{ github.event.release.target_commitish }}
20+
21+
- name: Update Changelog
22+
uses: stefanzweifel/changelog-updater-action@v1
23+
with:
24+
latest-version: ${{ github.event.release.tag_name }}
25+
release-notes: ${{ github.event.release.body }}
26+
27+
- name: Commit updated CHANGELOG
28+
uses: stefanzweifel/git-auto-commit-action@v5
29+
with:
30+
branch: ${{ github.event.release.target_commitish }}
31+
commit_message: Update CHANGELOG
32+
file_pattern: CHANGELOG.md

β€Ž.gitignoreβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/.env
2+
/.zed
3+
/.idea
4+
/.fleet
5+
/.vscode
6+
/vendor
7+
/node_modules
8+
/npm-debug.log
9+
/yarn-error.log

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
All notable changes to `{{ package.name }}` will be documented in this file.
4+
5+
## 1.0.0 - 2025-02-27
6+
7+
**Full Changelog**: https://github.com/yuges-code/package-template/commits/1.0.0

β€ŽLICENSEβ€Ž

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 yuges
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

β€ŽREADME.mdβ€Ž

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<div align="center">
2+
<img src="https://raw.githubusercontent.com/yuges-code/package-template/master/assets/logo.png">
3+
</div>
4+
5+
<div align="center">
6+
<h1>Package template</h1>
7+
</div>
8+
9+
<div align="center">
10+
<h3>πŸš€ Starter template for all Yuges packages</h3>
11+
</div>
12+
13+
<div align="center">
14+
<img alt="GitHub Release" src="https://img.shields.io/github/v/release/yuges-code/package-template">
15+
<img alt="GitHub License" src="https://img.shields.io/github/license/yuges-code/package-template">
16+
</div>
17+
18+
# πŸ’Ώ Installation
19+
20+
Add the package installation guide.
21+
22+
# πŸ§ͺ Running Tests
23+
24+
Add a test guide
25+
26+
# βš–οΈ License
27+
28+
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
29+
30+
# πŸ™†πŸΌβ€β™‚οΈ Authors Information
31+
32+
Created in 2025 by:
33+
34+
- [Yuges-code](https://github.com/yuges-code)
35+
- [All Contributors](../../contributors)

β€Žassets/logo.pngβ€Ž

644 KB
Loading

β€Žsrc/.gitkeepβ€Ž

Whitespace-only changes.

β€Žtests/.gitkeepβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)