Skip to content

Commit

Permalink
chore: increase workflow timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
janwo committed Sep 23, 2023
1 parent 5d3461c commit d9d0b83
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 25

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion smartblueberry/backend/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ console.log('Server [%s] running on %s', env.BUILD, server.info.uri)

await server.plugins.hassConnect.globalConnect()


process.on('unhandledRejection', (err) => {
console.error('unhandledRejection', err)
process.exit(1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input } from '@angular/core'
import * as dayjs from 'dayjs'
import dayjs from 'dayjs'

type IrrigationChartValues = {
temperatureUnit: string
Expand Down
2 changes: 1 addition & 1 deletion smartblueberry/frontend/src/locale/messages.de.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
</trans-unit>
<trans-unit id="6120936017248821651" datatype="html">
<source><x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em>"/> Example 2: You have an area of <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>10ft²<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/> and your valve pours <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>0.6234gal<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/> per minute. Consequently, you have an irrigation level of <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>0.1in<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/> per minute (<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>0.6234gal / 10ft² = 0.06234gal/ft² ≙ 0.1in<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/>). <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em>"/></source>
<target state="translated">Beispiel 2: Sie haben eine Fläche von <code>10ft²</code> und Ihr Ventil gibt <code>0.6234gal</code> pro Minute ab. Folglich haben Sie einen Bewässerungspegel von <code>0,1in</code> pro Minute (<code>0,6234gal / 10ft² = 0,06234gal/ft² ≙ 0,1in</code>)</target>
<target state="translated"><x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em>"/> Beispiel 2: Sie haben eine Fläche von <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>10ft²<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/> und Ihr Ventil gibt <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>0.6234gal<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/> pro Minute ab. Folglich haben Sie einen Bewässerungspegel von <x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>0,1in<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/> pro Minute (<x id="START_TAG_CODE" ctype="x-code" equiv-text="&lt;code&#10; >"/>0,6234gal / 10ft² = 0,06234gal/ft² ≙ 0,1in<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="&lt;/code&#10; >"/>)</target>
<context-group purpose="location">
<context context-type="sourcefile">frontend/src/app/irrigation/irrigation.component.html</context>
<context context-type="linenumber">55,61</context>
Expand Down
1 change: 1 addition & 0 deletions smartblueberry/frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"target": "es2022",
"module": "es2022",
Expand Down

0 comments on commit d9d0b83

Please sign in to comment.