Skip to content

Commit 6ac54e2

Browse files
committed
v1.1.11: Add timeout to test and e2e jobs to prevent hanging
- Add timeout-minutes: 30 to test job - Add timeout-minutes: 30 to e2e job - Prevents jobs from running up to 6-hour GitHub Actions limit - Test job was cancelled after 6+ hours of running
1 parent 1ee965e commit 6ac54e2

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141

4242
test:
4343
runs-on: ubuntu-latest
44+
timeout-minutes: 30
4445
services:
4546
postgres:
4647
image: postgres:15-alpine
@@ -162,6 +163,7 @@ jobs:
162163
e2e:
163164
runs-on: ubuntu-latest
164165
needs: build
166+
timeout-minutes: 30
165167
services:
166168
postgres:
167169
image: postgres:15-alpine

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to NEXT Portal will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.11] - 2026-01-02
9+
10+
### Fixed
11+
- Added 30-minute timeout to test and e2e jobs to prevent hanging
12+
- Prevents CI jobs from running up to 6-hour GitHub Actions limit
13+
814
## [1.1.10] - 2026-01-02
915

1016
### Fixed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.10
1+
1.1.11

0 commit comments

Comments
 (0)