Skip to content
This repository was archived by the owner on Jun 20, 2026. It is now read-only.

Commit 29f6f8c

Browse files
authored
Merge pull request #82 from essentialkaos/develop
Version 6.0.4
2 parents 2abcc2f + 6448cdb commit 29f6f8c

18 files changed

Lines changed: 209 additions & 111 deletions

.codebeatsettings

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: ❗ Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["issue • bug"]
5+
assignees:
6+
- andyone
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
> [!IMPORTANT]
13+
> Before you open an issue, search GitHub Issues for a similar bug reports. If so, please add a 👍 reaction to the existing issue.
14+
15+
- type: textarea
16+
attributes:
17+
label: Module version info
18+
description: Output of `grep 'github.com/essentialkaos/go-confluence' go.sum` command
19+
render: shell
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
attributes:
25+
label: Steps to reproduce
26+
description: Short guide on how to reproduce this problem on our site
27+
placeholder: |
28+
1. [First Step]
29+
2. [Second Step]
30+
3. [and so on...]
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
attributes:
36+
label: Expected behavior
37+
description: What you expected to happen
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
attributes:
43+
label: Actual behavior
44+
description: What actually happened
45+
validations:
46+
required: true
47+
48+
- type: textarea
49+
attributes:
50+
label: Additional info
51+
description: Include gist of relevant config, logs, etc.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
- name: Security Policies and Procedures
5+
url: https://github.com/essentialkaos/.github/blob/master/SECURITY.md
6+
about: Security procedures and general policies for all ESSENTIAL KAOS projects.
7+
8+
- name: Contributing Guidelines
9+
url: https://github.com/essentialkaos/contributing-guidelines/blob/master/CONTRIBUTING.md
10+
about: Contributing Guidelines for all ESSENTIAL KAOS projects
11+
12+
- name: Go Version Support Policy
13+
url: https://github.com/essentialkaos/.github/blob/master/GO-VERSION-SUPPORT.md
14+
about: Information about supported Go versions
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: ❓ Question
2+
description: Question about application, configuration or code
3+
title: "[Question]: "
4+
labels: ["issue • question"]
5+
assignees:
6+
- andyone
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
> [!IMPORTANT]
13+
> Before you open an issue, search GitHub Issues for a similar question. If so, please add a 👍 reaction to the existing issue.
14+
15+
- type: textarea
16+
attributes:
17+
label: Question
18+
description: Detailed question
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
attributes:
24+
label: Module version info
25+
description: Output of `grep 'github.com/essentialkaos/go-confluence' go.sum` command
26+
render: shell
27+
validations:
28+
required: true
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: ➕ Suggestion
2+
description: Suggest new feature or improvement
3+
title: "[Suggestion]: "
4+
labels: ["issue • suggestion"]
5+
assignees:
6+
- andyone
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
> [!IMPORTANT]
13+
> Before you open an issue, search GitHub Issues for a similar feature requests. If so, please add a 👍 reaction to the existing issue.
14+
>
15+
> Opening a feature request kicks off a discussion. Requests may be closed if we're not actively planning to work on them.
16+
17+
- type: textarea
18+
attributes:
19+
label: Proposal
20+
description: Description of the feature
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
attributes:
26+
label: Current behavior
27+
description: What currently happens
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
attributes:
33+
label: Desired behavior
34+
description: What you would like to happen
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
attributes:
40+
label: Use case
41+
description: Why is this important (helps with prioritizing requests)
42+
validations:
43+
required: true

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
target-branch: "develop"
77
schedule:
88
interval: "daily"
9-
timezone: "Europe/London"
9+
timezone: "Etc/UTC"
1010
time: "03:00"
1111
labels:
1212
- "PR • MAINTENANCE"
@@ -26,8 +26,8 @@ updates:
2626
target-branch: "develop"
2727
schedule:
2828
interval: "daily"
29-
timezone: "Europe/London"
30-
time: "04:00"
29+
timezone: "Etc/UTC"
30+
time: "03:00"
3131
labels:
3232
- "PR • MAINTENANCE"
3333
assignees:

.github/images/card.svg

Lines changed: 1 addition & 5 deletions
Loading

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
strategy:
3131
matrix:
32-
go: [ '1.20.x', '1.21.x', '1.22.x' ]
32+
go: [ 'oldstable', 'stable' ]
3333

3434
steps:
3535
- name: Checkout
@@ -59,13 +59,14 @@ jobs:
5959
- name: Set up Go
6060
uses: actions/setup-go@v5
6161
with:
62-
go-version: '1.22.x'
62+
go-version: 'stable'
6363

6464
- name: Download dependencies
6565
run: make deps
6666

6767
- name: Check Golang sources with Aligo
6868
uses: essentialkaos/aligo-action@v2
69+
continue-on-error: true
6970
with:
7071
files: ./...
7172

@@ -80,5 +81,5 @@ jobs:
8081
uses: actions/checkout@v4
8182

8283
- name: Check spelling
83-
continue-on-error: true
8484
uses: crate-ci/typos@master
85+
continue-on-error: true

0 commit comments

Comments
 (0)