From edca2d9b20c05f29ed83f663a0eb6ff704251055 Mon Sep 17 00:00:00 2001 From: AndreasAugustin Date: Tue, 15 Oct 2024 20:50:39 +0000 Subject: [PATCH] chore(template): merge template changes :up: Signed-off-by: AndreasAugustin --- .devcontainer/docker-compose.yml | 9 +++--- .editorconfig | 4 --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 37 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/CUSTOM.md | 7 +++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 20 ++++++++++++ .github/SECURITY.md | 5 +-- .markdownlintrc | 2 +- 7 files changed, 71 insertions(+), 13 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/CUSTOM.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index aa8d45e..ded7682 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -1,9 +1,9 @@ ---- #------------------------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- +version: '3.7' services: # Update this to the name of the service you want to work with in your docker-compose.yml file dev: @@ -11,7 +11,7 @@ services: # to cause all processes to run as this user. Once present, you can also simply # use the "remoteUser" property in devcontainer.json if you just want VS Code and # its sub-processes (terminals, tasks, debugging) to execute as the user. On Linux, - # you may need to ensure the UID and GID of the container user you create matches your + # you may need to ensure the UID and GID of the container user you create matches your # local user. See https://aka.ms/vscode-remote/containers/non-root for details. # user: vscode @@ -23,13 +23,13 @@ services: # Uncomment if you want to expose any additional ports. The snippet below exposes port 3000. # ports: # - 3000:3000 - + volumes: # Update this to wherever you want VS Code to mount the folder of your project - .:/workspace:cached # Uncomment the next line to use Docker from inside the container. See https://aka.ms/vscode-remote/samples/docker-in-docker-compose for details. - # - /var/run/docker.sock:/var/run/docker.sock + # - /var/run/docker.sock:/var/run/docker.sock # Uncomment the next four lines if you will use a ptrace-based debugger like C++, Go, and Rust. # cap_add: @@ -39,3 +39,4 @@ services: # Overrides default command so things don't shut down after the process ends. command: /bin/sh -c "while sleep 1000; do :; done" + diff --git a/.editorconfig b/.editorconfig index 0e4fbfb..dd23c21 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,7 +23,3 @@ indent_size = 2 [Makefile] indent_style = tab indent_size = 4 - -[*.sh] -indent_size = 2 -indent_style = space diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 0000000..8d0c9b7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,37 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' +--- + +**Describe the bug** +A clear and concise description of what the bug is. +**To Reproduce** +Steps to reproduce the behavior: + +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. +**Screenshots** +If applicable, add screenshots to help explain your problem. +**Desktop (please complete the following information):** + +- OS: [e.g. iOS] +- Browser [e.g. chrome, safari] +- Version [e.g. 22] + +**Smartphone (please complete the following information):** + +- Device: [e.g. iPhone6] +- OS: [e.g. iOS8.1] +- Browser [e.g. stock browser, safari] +- Version [e.g. 22] + + **Additional context** + Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/CUSTOM.md b/.github/ISSUE_TEMPLATE/CUSTOM.md new file mode 100644 index 0000000..babf9b2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/CUSTOM.md @@ -0,0 +1,7 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: "" +labels: "" +assignees: "" +--- diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md new file mode 100644 index 0000000..bbcbbe7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 585a96b..00a1b98 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -2,7 +2,4 @@ ## Reporting a Vulnerability -If you find a [security vulnerability advisory](https://github.com/AndreasAugustin/actions-template-sync/security/advisories/new) - -- click issues -- click report a vulnerability +If you find a security vulnerability please open a bug ticket. diff --git a/.markdownlintrc b/.markdownlintrc index 876c16c..dc646ba 100644 --- a/.markdownlintrc +++ b/.markdownlintrc @@ -1,4 +1,4 @@ { "default": true, - "MD013": { "line_length": 150, "tables": false } + "MD013": { "line_length": 150 } }