Skip to content

Commit

Permalink
Upd issues (#421)
Browse files Browse the repository at this point in the history
* upd feauture-request

* report issue upd

* disable wizards links

* fix build test debug
  • Loading branch information
Rinary1 authored Sep 30, 2024
1 parent 5a3a9e4 commit d6a4be4
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 91 deletions.
14 changes: 7 additions & 7 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
contact_links:
- name: Report a Security Vulnerability
url: https://github.com/space-wizards/space-station-14/blob/master/SECURITY.md
about: Please report security vulnerabilities privately so we can fix them before they are publicly disclosed.
- name: Request a Feature
url: https://discord.gg/rGvu9hKffJ
about: Submit feature requests on our Discord server (https://discord.gg/rGvu9hKffJ).
#contact_links:
# - name: Report a Security Vulnerability
# url: https://github.com/space-wizards/space-station-14/blob/master/SECURITY.md
# about: Please report security vulnerabilities privately so we can fix them before they are publicly disclosed.
# - name: Request a Feature
# url: https://discord.gg/rGvu9hKffJ
# about: Submit feature requests on our Discord server (https://discord.gg/rGvu9hKffJ).
20 changes: 10 additions & 10 deletions .github/ISSUE_TEMPLATE/issue_report.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
name: Report an Issue
about: "..."
name: Сообщить о проблеме
about: "Сообщить о баге, недоработке разработчикам для решения проблемы."
title: ''
labels: ''
assignees: ''

---

## Description
<!-- Explain your issue in detail. Issues without proper explanation are liable to be closed by maintainers. -->
## Описание
<!-- Подробно объясните вашу проблему. Проблемы без должного объяснения могут быть закрыты поддерживающими проект. -->

**Reproduction**
<!-- Include the steps to reproduce if applicable. -->
**Воспроизведение**
<!-- Включите шаги для воспроизведения, если это возможно. -->

**Screenshots**
<!-- If applicable, add screenshots to help explain your problem. -->
**Медиа**
<!-- Если есть возможность, прикрепите скриншот/видео, показывающие саму проблему и шаги ее воспроизведения. -->

**Additional context**
<!-- Add any other context about the problem here. Anything you think is related to the issue. -->
**Дополнительный контекст**
<!-- Добавьте сюда любой другой контекст или скриншоты, связанные с проблемой. -->
23 changes: 11 additions & 12 deletions .github/ISSUE_TEMPLATE/toolshed-feature-request.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
---
name: Toolshed feature request
about: Suggest a feature for Toolshed (for game admins/developers)
title: "[TOOLSHED REQUEST]"
labels: Toolshed
assignees: moonheart08
name: Предложить новое
about: Запросить у разработчиков добавить что-то новое.
title: "[Предложение]"
labels: "На рассмотрении"
assignees: VigersRay

---

**Is your feature request related to a problem/bug? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Ваш запрос функции связан с проблемой/ошибкой? Опишите, пожалуйста.**
<!-- Четкое и краткое описание проблемы. Например: Меня всегда раздражает, когда [...] -->

**Describe the command you'd like**
A clear and concise description of what you want and what it should do.
If you're a technical user (i.e. programmer) including type signatures is helpful.
**Опишите желаемое**
<!-- Четкое и краткое описание того, что вы хотите, и что оно должно делать. -->

**Additional context**
Add any other context or screenshots about the feature request here.
**Дополнительный контекст**
<!-- Добавьте сюда любой другой контекст или скриншоты, связанные с запросом функции. -->
125 changes: 63 additions & 62 deletions .github/workflows/build-test-debug.yml
Original file line number Diff line number Diff line change
@@ -1,62 +1,63 @@
name: Build & Test Debug

on:
push:
branches: [ master, staging, trying ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
branches: [ master ]

jobs:
build:
if: github.actor != 'GayBot' && github.event.pull_request.draft == false
strategy:
matrix:
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:
- name: Checkout Master
uses: actions/[email protected]

- name: Setup Submodule
run: |
git submodule update --init --recursive
- name: Pull engine updates
uses: space-wizards/[email protected]

- name: Update Engine Submodules
run: |
cd RobustToolbox/
git submodule update --init --recursive
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore

- name: Build Project
run: dotnet build --configuration DebugOpt --no-restore /p:WarningsAsErrors=nullable /m

- name: Run Content.Tests
run: dotnet test --no-build --configuration DebugOpt Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0

- name: Run Content.IntegrationTests
shell: pwsh
run: |
$env:DOTNET_gcServer=1
dotnet test --no-build --configuration DebugOpt Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 NUnit.MapWarningTo=Failed
ci-success:
name: Build & Test Debug
needs:
- build
runs-on: ubuntu-latest
steps:
- name: CI succeeded
run: exit 0
# Sunrise-edit - no need, stupid test.
#name: Build & Test Debug
#
#on:
# push:
# branches: [ master, staging, trying ]
# merge_group:
# pull_request:
# types: [ opened, reopened, synchronize, ready_for_review ]
# branches: [ master ]
#
#jobs:
# build:
# if: github.actor != 'GayBot' && github.event.pull_request.draft == false
# strategy:
# matrix:
# os: [ubuntu-latest]
#
# runs-on: ${{ matrix.os }}
#
# steps:
# - name: Checkout Master
# uses: actions/[email protected]
#
# - name: Setup Submodule
# run: |
# git submodule update --init --recursive
#
# - name: Pull engine updates
# uses: space-wizards/[email protected]
#
# - name: Update Engine Submodules
# run: |
# cd RobustToolbox/
# git submodule update --init --recursive
#
# - name: Setup .NET Core
# uses: actions/[email protected]
# with:
# dotnet-version: 8.0.x
#
# - name: Install dependencies
# run: dotnet restore
#
# - name: Build Project
# run: dotnet build --configuration DebugOpt --no-restore /p:WarningsAsErrors=nullable /m
#
# - name: Run Content.Tests
# run: dotnet test --no-build --configuration DebugOpt Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0
#
# - name: Run Content.IntegrationTests
# shell: pwsh
# run: |
# $env:DOTNET_gcServer=1
# dotnet test --no-build --configuration DebugOpt Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 NUnit.MapWarningTo=Failed
# ci-success:
# name: Build & Test Debug
# needs:
# - build
# runs-on: ubuntu-latest
# steps:
# - name: CI succeeded
# run: exit 0

0 comments on commit d6a4be4

Please sign in to comment.