-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
265 additions
and
269 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Ask a question | ||
description: If you don't have a specific issue or bug to report you can still ask us questions and we will do our best to answer them | ||
title: "[Question]: " | ||
labels: [question, triage] | ||
assignees: | ||
- tgwolf | ||
body: | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: What is your question? | ||
description: Please give us time to review your question and formulate an answer. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
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,58 @@ | ||
name: Report a bug | ||
description: Found a bug? Let us knonw what the issue is and we will attempt to fix it | ||
title: "[Bug]: " | ||
labels: [bug, triage] | ||
assignees: | ||
- tgwolf | ||
body: | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: How do we reproduct the bug? | ||
description: What are the steps we need to take to reproduce the behavior? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: screenshoots | ||
attributes: | ||
label: Screeenshots | ||
description: Upload any screenshots that might help demonstrate the bug. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional information | ||
description: Please provide any additional information that you think will help us to resolve this bug. | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Support us | ||
url: https://ko-fi.com/wolfsoftware | ||
about: Show your support | ||
- name: Visit our website | ||
url: https://wolfsoftware.com/ | ||
about: Visit the Wolf Software website and see what else we do and what services we offer |
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,43 @@ | ||
name: Request a new feature | ||
description: Got an idea for a new feature? Let us know what you want and we will see if we can add it | ||
title: "[Feature Request]: " | ||
labels: [enhancement, triage] | ||
assignees: | ||
- tgwolf | ||
body: | ||
- type: textarea | ||
id: releated-to | ||
attributes: | ||
label: Is your feature request related to a problem? | ||
description: A clear and concise description of what the problem is. E.g. I'm always frustrated when ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: suggested-solution | ||
attributes: | ||
label: Suggested Solution | ||
description: A clear and concise description of what you want to see implemented. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional information | ||
description: Please provide any additional information that you think will help us to resolve this bug. | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
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,97 @@ | ||
name: pipeline | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
bandit: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: [ '3.6', '3.7', '3.8', '3.9' ] | ||
name: Bandit Test on Python ${{ matrix.python }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Run Bandit | ||
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/bandit/master/pipeline.sh) | ||
pur: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: [ '3.6', '3.7', '3.8', '3.9' ] | ||
name: Pur Test on Python ${{ matrix.python }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Run Pur | ||
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/pur/master/pipeline.sh) | ||
pycodestyle: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: [ '3.6', '3.7', '3.8', '3.9' ] | ||
name: Pycodestyle Test on Python ${{ matrix.python }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Run Pycodestyle | ||
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/pycodestyle/master/pipeline.sh) | ||
awesomebot: | ||
name: Awesomebot | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Ruby 3.0 | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0 | ||
- name: Run Awesomebot | ||
env: | ||
FLAGS: "default" | ||
EXCLUDE_FILES: "CHANGELOG.md" | ||
WHITELIST: "https://img.shields.io" | ||
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/awesomebot/master/pipeline.sh) | ||
shellcheck: | ||
name: ShellCheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Shellcheck | ||
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/shellcheck/master/pipeline.sh) | ||
yaml-lint: | ||
name: YAML Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Ruby 3.0 | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0 | ||
- name: Run YAML-Lint | ||
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/yaml-lint/master/pipeline.sh) | ||
slack-workflow-status: | ||
if: always() | ||
name: Slack Post Workflow Notification | ||
needs: | ||
- bandit | ||
- pur | ||
- pycodestyle | ||
- awesomebot | ||
- shellcheck | ||
- yaml-lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Slack Post Workflow Notification | ||
uses: Gamesight/slack-workflow-status@master | ||
with: | ||
include_jobs: true | ||
repo_token: ${{secrets.GITHUB_TOKEN}} | ||
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}} |
Oops, something went wrong.