File tree Expand file tree Collapse file tree 6 files changed +18
-6
lines changed Expand file tree Collapse file tree 6 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 26
26
- name : Lint All
27
27
run : |
28
28
pre-commit run --all-files
29
-
29
+
30
+ test-technical-documentation :
31
+ runs-on : ubuntu-latest
32
+ steps :
33
+ - name : " Check out code"
34
+ uses : " actions/checkout@v3"
35
+ - name : " Build website"
36
+ # -e HUGO_REFLINKSERRORLEVEL=ERROR prevents merging broken refs with the downside
37
+ # that no refs to external content can be used as these refs will not resolve in the
38
+ # docs-base image.
39
+ run : |
40
+ docker run -v ${PWD}/docs/sources:/hugo/content/docs/oncall/latest -e HUGO_REFLINKSERRORLEVEL=ERROR --rm grafana/docs-base:latest /bin/bash -c 'make hugo'
30
41
31
42
unit-test-backend :
32
43
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 3
3
[ ![ Latest Release] ( https://img.shields.io/github/v/release/grafana/oncall?display_name=tag&sort=semver )] ( https://github.com/grafana/oncall/releases )
4
4
[ ![ License] ( https://img.shields.io/github/license/grafana/oncall )] ( https://github.com/grafana/oncall/blob/dev/LICENSE )
5
5
[ ![ Docker Pulls] ( https://img.shields.io/docker/pulls/grafana/oncall )] ( https://hub.docker.com/r/grafana/oncall/tags )
6
- [ ![ Slack] ( https://img.shields.io/badge/join%20slack-%23grafana-%2Doncall-brightgreen.svg )] ( https://grafana. slack.com/archives/C02LSUUSE2G )
6
+ [ ![ Slack] ( https://img.shields.io/badge/join%20slack-%23grafana-%2Doncall-brightgreen.svg )] ( https://slack.grafana. com/ )
7
7
[ ![ Discussion] ( https://img.shields.io/badge/discuss-oncall%20forum-orange.svg )] ( https://github.com/grafana/oncall/discussions )
8
8
[ ![ Build Status] ( https://drone.grafana.net/api/badges/grafana/oncall/status.svg?ref=refs/heads/dev )] ( https://drone.grafana.net/grafana/oncall )
9
9
Original file line number Diff line number Diff line change 1
1
# Grafana Cloud Documentation
2
2
3
- Source for documentation at https://grafana.com/docs/amixr /
3
+ Source for documentation at https://grafana.com/docs/oncall /
4
4
5
5
## Preview the website
6
6
Original file line number Diff line number Diff line change 96
96
{%- if "status" in payload -%}
97
97
<b>Status</b>: {{ payload.status }}
98
98
{% endif -%}
99
- <b>Labels:** {% for k, v in payload["labels"].items() %}
99
+ <b>Labels:</b> {% for k, v in payload["labels"].items() %}
100
100
{{ k }}: {{ v }}{% endfor %}
101
101
<b>Annotations:</b>
102
102
{%- for k, v in payload.get("annotations", {}).items() %}
211
211
"title" : "KubeJobCompletion" ,
212
212
"message" : (
213
213
"<b>Status</b>: firing\n "
214
- "<b>Labels:** \n "
214
+ "<b>Labels:</b> \n "
215
215
"job: kube-state-metrics\n "
216
216
"instance: 10.143.139.7:8443\n "
217
217
"job_name: email-tracking-perform-initialization-1.0.50\n "
Original file line number Diff line number Diff line change 350
350
SOCIAL_AUTH_SLACK_LOGIN_SECRET = SLACK_CLIENT_OAUTH_SECRET
351
351
352
352
SOCIAL_AUTH_SETTING_NAME_TO_LIVE_SETTING_NAME = {
353
+ "SOCIAL_AUTH_SLACK_LOGIN_KEY" : "SLACK_CLIENT_OAUTH_ID" ,
354
+ "SOCIAL_AUTH_SLACK_LOGIN_SECRET" : "SLACK_CLIENT_OAUTH_SECRET" ,
353
355
"SOCIAL_AUTH_SLACK_INSTALL_FREE_KEY" : "SLACK_CLIENT_OAUTH_ID" ,
354
356
"SOCIAL_AUTH_SLACK_INSTALL_FREE_SECRET" : "SLACK_CLIENT_OAUTH_SECRET" ,
355
357
}
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ harakiri=620
11
11
max-requests =5000
12
12
vacuum =True
13
13
buffer-size =65535
14
- listen =1024
15
14
http-auto-chunked =True
16
15
http-timeout =620
17
16
post-buffering =1
You can’t perform that action at this time.
0 commit comments