From 5d7317d1f20ec2fb5fd8ff632d4d05650cb7a5a3 Mon Sep 17 00:00:00 2001 From: RicInNewMexico <78682404+RicInNewMexico@users.noreply.github.com> Date: Mon, 31 Jan 2022 00:24:37 -0700 Subject: [PATCH 1/3] Update radioconfig.proto Add MCP9808 support --- radioconfig.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/radioconfig.proto b/radioconfig.proto index 8de65bc..f71e056 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -556,6 +556,7 @@ message RadioConfig { DHT22 = 4; BME280 = 5; BME680 = 6; + MCP9808 = 7; }; /* From c2de2f420c3fc53e07dc6c791216c330661c15d9 Mon Sep 17 00:00:00 2001 From: Ric Letson <78682404+RicInNewMexico@users.noreply.github.com> Date: Mon, 31 Jan 2022 00:27:14 -0700 Subject: [PATCH 2/3] Create blank.yml --- .github/workflows/blank.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..c405445 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,22 @@ +name: "CI" +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + + lint: + runs-on: ubuntu-latest + + steps: + - name: checkout source + uses: actions/checkout@v1 + + - name: run protolint + uses: plexsystems/protolint-action@v0.2.0 + with: + configDirectory: . From 20853fb4031d8324401328094fe41dd3f3a673f9 Mon Sep 17 00:00:00 2001 From: RicInNewMexico <78682404+RicInNewMexico@users.noreply.github.com> Date: Mon, 31 Jan 2022 12:48:49 -0700 Subject: [PATCH 3/3] Revert "Create blank.yml" This reverts commit c2de2f420c3fc53e07dc6c791216c330661c15d9. --- .github/workflows/blank.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml deleted file mode 100644 index c405445..0000000 --- a/.github/workflows/blank.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: "CI" -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - - lint: - runs-on: ubuntu-latest - - steps: - - name: checkout source - uses: actions/checkout@v1 - - - name: run protolint - uses: plexsystems/protolint-action@v0.2.0 - with: - configDirectory: .