Initial commit.

This commit is contained in:
2025-09-09 19:53:24 +05:00
commit b65b8a9e72
14 changed files with 438 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
name: Bug report
about: File a bug report.
body:
- type: textarea
id: app-and-os-details
attributes:
label: What OS, deployment type and application version do you use?
placeholder: Bunker v0.1.2 on Rocky Linux 9, deployed via Docker
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
placeholder: Tell us what you see!
validations:
required: true
- type: textarea
id: what-expected
attributes:
label: What you expect to happen?
placeholder: Describe your expectations.
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to these things
options:
- label: I have read the "Submitting issues" section in [CONTRIBUTING.md](https://code.pztrn.name/apps/bunker/src/branch/main/CONTRIBUTING.md) and done everything requested.
required: true
- label: I have visited [Telegram chat](https://t.me/bunker_app_chat_eng) and asked for assistance.
required: true

View File

@@ -0,0 +1,21 @@
---
name: Feature request
about: File a request for additional feature.
body:
- type: textarea
id: feature-description
attributes:
label: Feature description
placeholder: Describe feature you need.
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to these things
options:
- label: I have read the "Submitting issues" section in [CONTRIBUTING.md](https://code.pztrn.name/apps/bunker/src/branch/main/CONTRIBUTING.md) and done everything requested.
required: true
- label: I have visited [Telegram chat](https://t.me/bunker_app_chat_eng) and asked for assistance.
required: true

View File

@@ -0,0 +1,26 @@
---
name: "Linting and tests"
run-name: "Linting and tests"
on:
- push
jobs:
Linting:
runs-on: "ubuntu-22.04"
steps:
- name: "checkout source"
uses: actions/checkout@v4
- name: "lint"
uses: docker://code.pztrn.name/containers/go-toolbox:v5
with:
command: "/usr/local/bin/task lint"
Tests:
runs-on: "ubuntu-22.04"
steps:
- name: "checkout source"
uses: actions/checkout@v4
- name: "tests"
uses: docker://code.pztrn.name/containers/go-toolbox:v5
with:
command: "/usr/local/bin/task test"