-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from essentialkaos/develop
Version 1.0.0
- Loading branch information
Showing
17 changed files
with
287 additions
and
178 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: ❗ Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["issue • bug"] | ||
assignees: | ||
- andyone | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
> [!IMPORTANT] | ||
> Before you open an issue, search GitHub Issues for a similar bug reports. If so, please add a 👍 reaction to the existing issue. | ||
- type: textarea | ||
attributes: | ||
label: Verbose application info | ||
description: Output of `rsz -vv` command | ||
render: shell | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Install tools | ||
description: How did you install this application | ||
options: | ||
- From Sources | ||
- RPM Package | ||
- Prebuilt Binary | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: Short guide on how to reproduce this problem on our site | ||
placeholder: | | ||
1. [First Step] | ||
2. [Second Step] | ||
3. [and so on...] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: What you expected to happen | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Actual behavior | ||
description: What actually happened | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional info | ||
description: Include gist of relevant config, logs, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: ❓ Question | ||
description: Question about application, configuration or code | ||
title: "[Question]: " | ||
labels: ["issue • question"] | ||
assignees: | ||
- andyone | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
> [!IMPORTANT] | ||
> Before you open an issue, search GitHub Issues for a similar question. If so, please add a 👍 reaction to the existing issue. | ||
- type: textarea | ||
attributes: | ||
label: Question | ||
description: Detailed question | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Related version application info | ||
description: Output of `rsz -vv` command | ||
render: shell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: ➕ Suggestion | ||
description: Suggest new feature or improvement | ||
title: "[Suggestion]: " | ||
labels: ["issue • suggestion"] | ||
assignees: | ||
- andyone | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
> [!IMPORTANT] | ||
> Before you open an issue, search GitHub Issues for a similar feature requests. If so, please add a 👍 reaction to the existing issue. | ||
> | ||
> Opening a feature request kicks off a discussion. Requests may be closed if we're not actively planning to work on them. | ||
- type: textarea | ||
attributes: | ||
label: Proposal | ||
description: Description of the feature | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Current behavior | ||
description: What currently happens | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Desired behavior | ||
description: What you would like to happen | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Use case | ||
description: Why is this important (helps with prioritizing requests) | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: CI (PR) | ||
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
workflow_dispatch: | ||
inputs: | ||
force_run: | ||
description: 'Force workflow run' | ||
required: true | ||
type: choice | ||
options: [yes, no] | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
statuses: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
CI: | ||
uses: ./.github/workflows/ci.yml | ||
secrets: inherit | ||
|
||
ImageBuild: | ||
name: Container Image Build Check | ||
runs-on: ubuntu-latest | ||
|
||
needs: CI | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
|
||
strategy: | ||
matrix: | ||
image: [ 'alpine' ] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
env: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
if: ${{ env.DOCKERHUB_USERNAME != '' }} | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build Docker image | ||
run: | | ||
docker build --build-arg REGISTRY=${REGISTRY} -f .docker/${{matrix.image}}.docker -t ${{matrix.image}} . | ||
- name: Show info about built Docker image | ||
uses: essentialkaos/docker-info-action@v1 | ||
with: | ||
image: ${{matrix.image}} | ||
show-labels: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: CI (Push) | ||
|
||
on: | ||
push: | ||
branches: [master, develop] | ||
workflow_dispatch: | ||
inputs: | ||
force_run: | ||
description: 'Force workflow run' | ||
required: true | ||
type: choice | ||
options: [yes, no] | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
statuses: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
CI: | ||
uses: ./.github/workflows/ci.yml | ||
secrets: inherit |
Oops, something went wrong.