Skip to content

Commit

Permalink
build: Dont create a release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nervetattoo committed Apr 11, 2021
1 parent a7638b3 commit 14a294b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
7 changes: 0 additions & 7 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": ["package.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
Expand Down
6 changes: 2 additions & 4 deletions src/components/sensors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ export default function renderSensors({
type: 'table',
labels: true,
}
var stateString = localize(state, 'component.climate.state._.')
let stateString = localize(state, 'component.climate.state._.')
if (action) {
stateString = [
localize(action, 'state_attributes.climate.hvac_action.'),
' (',
stateString,
')',
` (${stateString})`,
].join('')
}
const sensorHtml = [
Expand Down

0 comments on commit 14a294b

Please sign in to comment.