-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.1 Fixed Bugs and more Enhances (#26)
* v2.1 Fixed Bugs and more Enhances * Update yaml.adapter.ts * fixed the error --------- Co-authored-by: ANAS799 <[email protected]>
- Loading branch information
Showing
27 changed files
with
3,419 additions
and
2,781 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,35 @@ | ||
name: Update Changelog | ||
|
||
on: | ||
push: | ||
tags: [ v*.* ] # Triggers on pushing tags starting with "v" | ||
|
||
jobs: | ||
update-changelog: | ||
runs-on: ubuntu-latest | ||
environment: production | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get previous tag | ||
id: previousTag | ||
run: | | ||
name=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | tail -2 | head -1) | ||
echo "previousTag: $name" | ||
echo "previousTag=$name" >> $GITHUB_ENV | ||
- name: Update CHANGELOG | ||
id: changelog | ||
uses: requarks/changelog-action@v1 | ||
with: | ||
token: ${{ github.token }} | ||
fromTag: ${{ github.ref_name }} | ||
toTag: ${{ env.previousTag }} | ||
writeToFile: true | ||
|
||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 # Commit the updated changelog | ||
with: | ||
file_pattern: CHANGELOG.md | ||
commit_message: 'Update CHANGELOG.md for ${{ github.ref_name }} [skip ci]' |
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
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,4 +1,5 @@ | ||
module.exports = { | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
verbose: true, | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.