Skip to content

Commit 0468049

Browse files
committed
🔧 Fix PR release validation workflow permissions and timeout
- Add proper permissions (contents: read, pull-requests: read) - Add timeout-minutes: 5 for reliability - Ensure consistent workflow structure across all PR workflows
1 parent 1dc5bb2 commit 0468049

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/pr-release-validation.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ on:
66
branches:
77
- feature/project-workflows
88

9+
permissions:
10+
contents: read
11+
pull-requests: read
12+
913
jobs:
1014
validate:
1115
runs-on: ubuntu-latest
16+
timeout-minutes: 5
1217

1318
steps:
1419
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)