Skip to content

Commit 4b6206c

Browse files
committed
Merge branch 'release/1.0.24'
2 parents ff3628d + 481977c commit 4b6206c

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
check:
1717
name: State Verifier
1818
runs-on: ubuntu-latest
19+
outputs:
20+
skip_ci: ${{ steps.check_initial_commit.outputs.skip_ci }}
1921
steps:
2022
# The first step is to check out the repository code
2123
- name: Checking out repository code
@@ -41,7 +43,7 @@ jobs:
4143
4244
build: # Job named 'build'
4345
name: Build & Test
44-
if: needs.check.check_initial_commit.outputs.skip_ci != 'true'
46+
if: needs.check.outputs.skip_ci != 'true'
4547
runs-on: ubuntu-latest # The type of machine to run the job on.
4648

4749
needs: [check]

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.24] - 2023-08-11
6+
7+
### <!-- 07 -->Continuous Integrations
8+
9+
- Update build workflow to control CI skip
10+
511
## [1.0.23] - 2023-08-11
612

713
### <!-- 07 -->Continuous Integrations

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-lingui-template",
3-
"version": "1.0.23",
3+
"version": "1.0.24",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)