Skip to content

Commit 3033912

Browse files
authored
release: v3.1.0 (#259)
* fix: AI 투표 자동 오픈을 1시간 단위 스케줄링으로 변경 (#258) * chore: v3.1.0 명시 * chore: Github Actions 워크플로우 트리거 브랜치 수정 (main 제거)
1 parent b642486 commit 3033912

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/cicd-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: SpringBoot Docker CI/CD - Unified
33
on:
44
push:
55
branches:
6-
- main
6+
# - main
77
- develop
88
- cicd/**
99
- release/**

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'com.moa'
11-
version = 'v3.0.0'
11+
version = 'v3.1.0'
1212

1313
java {
1414
toolchain {

src/main/java/com/moa/moa_server/domain/vote/scheduler/AIVoteOpenScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class AIVoteOpenScheduler {
1717

1818
private final VoteRepository voteRepository;
1919

20-
@Scheduled(cron = "0 5 10 * * *", zone = "Asia/Seoul") // 초 분 시 일 월 요일
20+
@Scheduled(cron = "0 0 * * * *", zone = "Asia/Seoul") // 초 분 시 일 월 요일 (1시간)
2121
@Transactional
2222
public void openAIVotes() {
2323
LocalDateTime now = LocalDateTime.now(ZoneOffset.UTC);

0 commit comments

Comments
 (0)