We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc49800 + e60b961 commit 3f9da1cCopy full SHA for 3f9da1c
.github/workflows/unittest-on-pr.yml
@@ -18,7 +18,8 @@ jobs:
18
pwd
19
git --version
20
docker version
21
- echo "TIMEOUT_SECONDS: ${{ vars.TIMEOUT_SECONDS }}"
+ echo "Repository value of TIMEOUT_SECONDS: ${{ vars.TIMEOUT_SECONDS }}"
22
+ echo "This should not be set on a PR from a different source!"
23
24
- name: Checkout
25
uses: actions/checkout@v4
@@ -52,6 +53,7 @@ jobs:
52
53
- name: Wait for server to start
54
run: |
55
START_TIME=$(date +%s)
56
+ TIMEOUT_SECONDS=${{ vars.TIMEOUT_SECONDS || '300' }}
57
echo "TIMEOUT_SECONDS: ${{ vars.TIMEOUT_SECONDS }}"
58
59
# Set the timezone to Germany (Central European Time)
0 commit comments