github scripts removed

This commit is contained in:
Alexander Schulz 2023-12-31 14:51:36 +01:00
parent 51b784fb2c
commit a5946b281b
3 changed files with 0 additions and 72 deletions

1
.github/CODEOWNERS vendored
View File

@ -1 +0,0 @@
* chris.lancaster@cloud.com danilo.delbusso@cloud.com konstantina.chremmou@cloud.com

View File

@ -1,30 +0,0 @@
---
name: Bug report
about: Create a report to help us improve
---
**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 / Logfiles**
If applicable, add screenshots / logfiles to help explain your problem.
**Hard-/Software involved:**
- Hardware: [e.g. Dell M620]
- Host XCP-ng Version: [e.g. 7.4.1]
- Client XCP-ng Center Version: [e.g. 7.4.2-RC2]
- Desktop OS: [e.g. Windows 10 1803]
**Additional context**
Add any other context about the problem here.

View File

@ -1,41 +0,0 @@
name: Run checks
on: [push, pull_request]
jobs:
job-checks:
name: Run checks
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Run copyright check
shell: powershell
run: ./scripts/check_copyright.ps1 -NOISY
- name: Run I18n check
shell: powershell
run: ./scripts/check_i18n.ps1 -NOISY
- name: Run spell check
shell: powershell
run: |
# package support for windows is not great; this is ugly, but will do for now
choco install cyg-get --no-progress
cyg-get.bat aspell aspell-en
$env:Path += ";C:\tools\cygwin\bin;"
./scripts/check_spelling.ps1 -NOISY
- name: Run string sort check
shell: powershell
run: ./scripts/check_strings_sorting.ps1 `
-CHECK_LOCALIZED `
-NOISY `
-PATHS ./XenModel/Messages.resx, ./XenModel/FriendlyNames.resx, `
./XenModel/InvisibleMessages.resx, ./XenModel/UnitStrings.resx, `
./XenOvfApi/Content.resx, ./XenOvfApi/Messages.resx; `
if($lastexitcode -eq 0){ `
./scripts/check_strings_sorting.ps1 `
-NOISY `
-PATHS ./Branding/Branding.resx `
}