Skip to content

Commit 6e7dccc

Browse files
authored
Merge branch 'geerlingguy:master' into add-enphase-envoy-collector
2 parents e7ca1c9 + 98c83ad commit 6e7dccc

File tree

10 files changed

+724
-177
lines changed

10 files changed

+724
-177
lines changed

.ansible-lint

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
skip_list:
33
- 'fqcn-builtins'
44
- 'no-handler'
5+
- 'no-changed-when'

.github/stale.yml

-57
This file was deleted.

.github/workflows/stale.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Close inactive issues
3+
'on':
4+
schedule:
5+
- cron: "55 21 * * 1" # semi-random time
6+
7+
jobs:
8+
close-issues:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
pull-requests: write
13+
steps:
14+
- uses: actions/stale@v8
15+
with:
16+
days-before-stale: 120
17+
days-before-close: 60
18+
exempt-issue-labels: bug,pinned,security,planned
19+
exempt-pr-labels: bug,pinned,security,planned
20+
stale-issue-label: "stale"
21+
stale-pr-label: "stale"
22+
stale-issue-message: |
23+
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
24+
25+
Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark issues as stale.
26+
close-issue-message: |
27+
This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.
28+
stale-pr-message: |
29+
This pr has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
30+
31+
Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark issues as stale.
32+
close-pr-message: |
33+
This pr has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.
34+
repo-token: ${{ secrets.GITHUB_TOKEN }}

.yamllint

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ rules:
77
level: warning
88

99
ignore: |
10-
.github/stale.yml
10+
.github/workflows/stale.yml

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ So that's what this is.
1212

1313
**Internet Monitoring**: Installs Prometheus and Grafana, along with a few Docker containers to monitor your Internet connection with Speedtest.net speedtests and HTTP tests so you can see uptime, ping stats, and speedtest results over time.
1414

15-
![Internet Monitoring Dashboard in Grafana](/images/internet-monitoring.png)
15+
![Internet Monitoring Dashboard in Grafana](images/internet-monitoring.png)
1616

1717
**Pi-hole**: Installs the Pi-hole Docker configuration so you can use Pi-hole for network-wide ad-blocking and local DNS. Make sure to update your network router config to direct all DNS queries through your Raspberry Pi if you want to use Pi-hole effectively!
1818

19-
![Pi-hole on the Internet Pi](/images/pi-hole.png)
19+
![Pi-hole on the Internet Pi](images/pi-hole.png)
2020

2121
Other features:
2222

0 commit comments

Comments
 (0)