-
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.
Added Github workflow + issues + security + CoC related files
- Loading branch information
Showing
7 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
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,14 @@ | ||
# Code of Conduct | ||
|
||
Everyone interacting in this project is expected to follow the | ||
[Django's Code of Conduct](https://www.djangoproject.com/conduct/). This includes all infrastructure | ||
used in the development of this project, such as codebase, issue tracker, chat rooms, and mailing lists. | ||
|
||
In general, this means that everyone is expected to be **open**, **considerate**, and **respectful** | ||
of others no matter what their position is within the project. | ||
|
||
## Reporting | ||
|
||
All incidents should be reported by matagus+coc@gmail.com. This email is an alias with the following responders: | ||
|
||
* Matias Agustin Mendez (https://github.com/matagus) |
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,34 @@ | ||
name: Bug Report | ||
description: File a bug | ||
body: | ||
- type: input | ||
id: macos_version | ||
attributes: | ||
label: Operating System | ||
description: Which operating system were you using? | ||
placeholder: MacOS Sonoma 14.3 | ||
validations: | ||
required: false | ||
- type: input | ||
id: package_version | ||
attributes: | ||
label: Package Version | ||
description: Which version of this package were you using? If not the latest version, please check this issue has not since been resolved. | ||
placeholder: 0.2.0 | ||
validations: | ||
required: false | ||
- type: input | ||
id: python_version | ||
attributes: | ||
label: Python Version | ||
description: Which version of Python were you using? | ||
placeholder: 3.12.0 | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please describe the bug | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask a Question | ||
url: https://github.com/matagus/django-app-starter/discussions/new?category=q-a&title=[Question] | ||
about: Ask questions and discuss with other community members |
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,10 @@ | ||
name: Feature Request | ||
description: Request an enhancement or new feature. | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please describe your feature request with appropriate detail. | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Please report security issues directly over email to matagus+security@gmail.com |
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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: weekly |
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,21 @@ | ||
name: Create Draft Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
draft: true | ||
allowUpdates: true | ||
generateReleaseNotes: true |