[Bug] Thermostat using Fahrenheit unit of measurement appears to be exposed as Celsius resulting in inaccurate temperatures in Alexa #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manage Issues | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
remove-waiting-label: | |
if: (!github.event.issue.pull_request) && (github.event.action == 'created') | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Remove "waiting for feedback" label | |
run: gh issue edit ${{ github.event.issue.number }} --remove-label "waiting for feedback" | |
env: | |
GH_TOKEN: ${{ github.token }} |