mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
github scripts removed
This commit is contained in:
parent
51b784fb2c
commit
a5946b281b
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
@ -1 +0,0 @@
|
|||||||
* chris.lancaster@cloud.com danilo.delbusso@cloud.com konstantina.chremmou@cloud.com
|
|
30
.github/ISSUE_TEMPLATE/bug_report.md
vendored
30
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -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.
|
|
41
.github/workflows/main.yml
vendored
41
.github/workflows/main.yml
vendored
@ -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 `
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user