Skip to content

Commit 1c9f35b

Browse files
committed
Merge branch 'main' into feat/navigation-blog-api
2 parents 1f9e95e + e8b4c6a commit 1c9f35b

File tree

5 files changed

+55
-2
lines changed

5 files changed

+55
-2
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
args: --config=.php-cs-fixer.dist.php --allow-risky=yes
2222

2323
- name: Commit changes
24-
uses: stefanzweifel/git-auto-commit-action@v5
24+
uses: stefanzweifel/git-auto-commit-action@v6
2525
with:
2626
commit_message: Fix styling

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
release-notes: ${{ github.event.release.body }}
2525

2626
- name: Commit updated CHANGELOG
27-
uses: stefanzweifel/git-auto-commit-action@v5
27+
uses: stefanzweifel/git-auto-commit-action@v6
2828
with:
2929
branch: main
3030
commit_message: Update CHANGELOG for ${{ github.event.release.name }}

.gitlab-ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
stages:
2+
- build
3+
4+
variables:
5+
GIT_STRATEGY: none
6+
7+
build:
8+
stage: build
9+
tags:
10+
- csl-176
11+
rules:
12+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
13+
script:
14+
- cd $BLOG_RUNNER_PATH
15+
- ./runner.sh sync api_package
16+
- ./runner.sh build_admin install
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Summary
2+
<!-- Describe why you made changes and the changes, including screenshots if necessary. What did you do with this pull request? -->
3+
4+
## Unit Testing
5+
<!-- List your unit/integration tests here, or if there are no unit tests, please explain why. -->
6+
7+
## Operation check
8+
<!-- URL of checklist, etc. -->
9+
10+
> [!CAUTION]
11+
> ### Release Notes
12+
> <!-- * Information if you need to manually configure something at release time -->
13+
> <!-- * Commands to run after release, etc. -->
14+
> *
15+
16+
> [!NOTE]
17+
> ### Additional Notes
18+
> <!-- * Reference information for reviewers (if there are any implementation concerns or points of note, please state them) -->
19+
> *
20+
21+
## Checklist
22+
* [ ] Code follows our [Coding Standards](https://knowledge.cslant.com/doc/coding-standard-ascz0oLa69).
23+
* [ ] Code matches the confirmed solution in the ticket.
24+
* [ ] Unit/Integration tests have been added or updated.
25+
* [ ] Env/Config/DB changes were confirmed by @cslant/admin.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
Here is the complete list of changes for each Blog API package release.
44

5+
## v2.0.2 - 2025-06-17
6+
7+
### What's Changed
8+
9+
* #89 feat: create class model schema to reuseable for api docs in blog… by @francis-duong-0509 in https://github.com/cslant/blog-api-package/pull/90
10+
* build(deps): bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 by @dependabot in https://github.com/cslant/blog-api-package/pull/93
11+
* Feature/add seo image for meta box by @pxthinh in https://github.com/cslant/blog-api-package/pull/95
12+
* feat: api reply comment by @pxthinh in https://github.com/cslant/blog-api-package/pull/97
13+
* build(deps): bump stefanzweifel/git-auto-commit-action from 5 to 6 by @dependabot in https://github.com/cslant/blog-api-package/pull/98
14+
15+
**Full Changelog**: https://github.com/cslant/blog-api-package/compare/v2.0.1...v2.0.2
16+
517
## v2.0.1 - 2025-04-28
618

719
### What's Changed

0 commit comments

Comments
 (0)