From d65239a55745e9078e4253426e1b354976d25c44 Mon Sep 17 00:00:00 2001
From: Carlo Costanzo <Carlo@ipm.com>
Date: Sun, 19 Jul 2020 13:05:47 -0400
Subject: [PATCH 1/3] Stealing this great idea from @jcallaghan

Um, Because it's awesome to have more information JUST APPEAR in your repo.
---
 .github/label-commenter-config.yml | 77 ++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)
 create mode 100644 .github/label-commenter-config.yml

diff --git a/.github/label-commenter-config.yml b/.github/label-commenter-config.yml
new file mode 100644
index 00000000..77eb3261
--- /dev/null
+++ b/.github/label-commenter-config.yml
@@ -0,0 +1,77 @@
+# https://github.com/marketplace/actions/label-commenter
+
+labels:
+  - name: "integration: utility_meter"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```utility_meter``` integration documentation - https://www.home-assistant.io/integrations/utility_meter/"
+
+  - name: "integration: alert"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```alert``` integration documentation - https://www.home-assistant.io/integrations/alert/"
+        
+  - name: "integration: input_number"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```input_number``` integration documentation - https://www.home-assistant.io/integrations/input_number/"
+
+  - name: "integration: input_text"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```input_text``` integration documentation - https://www.home-assistant.io/integrations/input_text/"
+
+  - name: "integration: counter"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```counter``` integration documentation - https://www.home-assistant.io/integrations/counter/"
+        
+  - name: "integration: input_boolean"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```input_boolean``` integration documentation - https://www.home-assistant.io/integrations/input_boolean/"
+
+  - name: "integration: binary_sensor"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```binary_sensor``` integration documentation - https://www.home-assistant.io/integrations/binary_sensor/ and https://www.home-assistant.io/integrations/binary_sensor.template/"
+        
+  - name: "integration: input_datetime"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```input_datetime``` integration documentation - https://www.home-assistant.io/integrations/input_datetime/"
+        
+  - name: "integration: input_select"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```input_select``` integration documentation - https://www.home-assistant.io/integrations/input_select/"
+
+  - name: "integration: person"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```person``` integration documentation - https://www.home-assistant.io/integrations/person/"
+        
+  - name: "integration: timer"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```timer``` integration documentation - https://www.home-assistant.io/integrations/timer/"
+        
+  - name: "integration: sensor_template"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```sensor``` integration documentation - https://www.home-assistant.io/integrations/template/"
+        
+  - name: "core: lovelace"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```lovelace``` documentation - https://www.home-assistant.io/lovelace/"        
+        
+  - name: "lovelace: dashboards"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```lovelace dashbaords``` documentation - https://www.home-assistant.io/lovelace/dashboards-and-views/"           
+        
+  - name: "lovelace: cards"
+    labeled:
+      issue:
+        body: "#HomeAssistant ```lovelace cards``` documentation - https://www.home-assistant.io/lovelace/entity/"     

From 3145ec536de54f1334b846c3316cdfb7cf49713a Mon Sep 17 00:00:00 2001
From: Carlo Costanzo <Carlo@ipm.com>
Date: Sun, 19 Jul 2020 13:08:53 -0400
Subject: [PATCH 2/3] Create label-commenter.yml

---
 .github/workflows/label-commenter.yml | 28 +++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 .github/workflows/label-commenter.yml

diff --git a/.github/workflows/label-commenter.yml b/.github/workflows/label-commenter.yml
new file mode 100644
index 00000000..d5a713a1
--- /dev/null
+++ b/.github/workflows/label-commenter.yml
@@ -0,0 +1,28 @@
+
+# .github/workflows/label-commenter.yml
+
+name: Label Commenter
+
+on:
+  issues:
+    types:
+      - labeled
+      - unlabeled
+  pull_request:
+    types:
+      - labeled
+      - unlabeled
+
+jobs:
+  comment:
+    runs-on: ubuntu-18.04
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          ref: master
+
+      - name: Label Commenter
+        uses: peaceiris/actions-label-commenter@v1
+        with:
+          github_token: ${{ secrets.token }}
+          # config_file: .github/label-commenter-config.yml

From 9469606dc75a8869f2e1cb96685f29db4568b1a6 Mon Sep 17 00:00:00 2001
From: Carlo Costanzo <Carlo@ipm.com>
Date: Sun, 19 Jul 2020 13:12:46 -0400
Subject: [PATCH 3/3] Update weekly-digest.yml

---
 .github/weekly-digest.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/weekly-digest.yml b/.github/weekly-digest.yml
index ea252e6d..08cced63 100644
--- a/.github/weekly-digest.yml
+++ b/.github/weekly-digest.yml
@@ -1,4 +1,5 @@
-publishDay: sun
+# Configuration for weekly-digest - https://github.com/apps/weekly-digest
+publishDay: mon
 canPublishIssues: true
 canPublishPullRequests: true
 canPublishContributors: true