Skip to content

Commit

Permalink
fix(fan): Fix typo in fan ventilation schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Jun 3, 2024
1 parent b3f4f15 commit c6b5abb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: set up node # we need node for for semantic release
uses: actions/setup-node@v3.6.0
uses: actions/setup-node@v4
with:
node-version: 14.17.0
node-version: 22.2.0
- name: install semantic-release
run:
npm install @semantic-release/exec
Expand Down
8 changes: 7 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
}
2 changes: 1 addition & 1 deletion lib/to_openstudio/ventcool/fan.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def to_openstudio(openstudio_model, parent)
vent_sch = openstudio_model.getScheduleByName(vent_control_hash[:schedule])
unless vent_sch.empty?
vent_sch_object = vent_sch.get
os_zone_vent.setOpeningAreaFractionSchedule(vent_sch_object)
os_zone_vent.setSchedule(vent_sch_object)
end
end
end
Expand Down

0 comments on commit c6b5abb

Please sign in to comment.