This repository was archived by the owner on Jul 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +39
-1
lines changed
Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 66 ],
77 "enabledManagers" : [" npm" , " github-actions" ],
88 "rangeStrategy" : " pin" ,
9+ "schedule" : " every weekend" ,
910 "packageRules" : [
11+ {
12+ "matchManagers" : [" npm" ],
13+ "matchPackagePatterns" : [
14+ " @fluencelabs/.*"
15+ ],
16+ "semanticCommitType" : " fix" ,
17+ "semanticCommitScope" : " deps" ,
18+ "schedule" : " at any time"
19+ },
1020 {
1121 "matchDepTypes" : [" devDependencies" ],
12- "prPriority" : -1
22+ "prPriority" : -1 ,
23+ "semanticCommitType" : " chore" ,
24+ "semanticCommitScope" : " deps"
1325 },
1426 {
1527 "matchUpdateTypes" : [" major" ],
Original file line number Diff line number Diff line change 5959 with :
6060 aqua-version : " ${{ needs.aqua.outputs.aqua-version }}"
6161 fluence-js-version : " ${{ needs.fluence-js.outputs.fluence-js-version }}"
62+
63+ status :
64+ runs-on : ubuntu-latest
65+ if : always()
66+ needs :
67+ - fluence-cli
68+ - registry
69+ - aqua-playground
70+
71+ steps :
72+ - uses : lwhiteley/dependent-jobs-result-check@v1
73+ id : status
74+ with :
75+ statuses : failure,cancelled,skipped
76+ dependencies : ${{ toJSON(needs) }}
77+
78+ - name : Log output
79+ run : |
80+ echo "statuses:" "${{ steps.status.outputs.statuses }}"
81+ echo "jobs:" "${{ steps.status.outputs.jobs }}"
82+ echo "found any?:" "${{ steps.status.outputs.found }}"
83+
84+ - name : Fail run
85+ if : fromJSON(steps.status.outputs.found)
86+ run : exit 1
Original file line number Diff line number Diff line change 2929 fluence-js :
3030 name : " Run tests"
3131 runs-on : ubuntu-latest
32+ timeout-minutes : 30
3233
3334 permissions :
3435 contents : read
You can’t perform that action at this time.
0 commit comments