From 2a1110c189fd02a5d57745a416518727f7af29bb Mon Sep 17 00:00:00 2001 From: Simon Smith Date: Fri, 2 Feb 2024 11:38:19 +0000 Subject: [PATCH] Delete .github directory --- .github/ISSUE_TEMPLATE/bug_report.md | 41 ------------------ .github/ISSUE_TEMPLATE/feature_request.md | 20 --------- .github/workflows/codeql-analysis.yml | 51 ----------------------- .github/workflows/deploy-docs.yml | 24 ----------- .github/workflows/release.yml | 21 ---------- 5 files changed, 157 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/workflows/codeql-analysis.yml delete mode 100644 .github/workflows/deploy-docs.yml delete mode 100644 .github/workflows/release.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 81669b6..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -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. - -**Server Software (please complete the following information):** - - OS: [e.g. Ubuntu] - - Virtualization: [e.g. Docker] - - Network: [e.g. LAN/WAN, reverse proxy, cloudflare, ssl offload, etc...] - - Version: [e.g. 1.0.43] - - Node: [e.g. 18.4.0] - - Browser: [e.g. Google Chrome] - -**Remote Device (please complete the following information):** - - Device: [e.g. Laptop] - - OS: [e.g. Windows 10] - - Version: [e.g. 21H2] - - Current Core Version (if known): [**HINT**: Go to a device then `console` Tab then type `info`] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 11fc491..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -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/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index c8b3dd9..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: "Code scanning - action" - -on: - push: - pull_request: - schedule: - - cron: '0 20 * * 4' - -jobs: - CodeQL-Build: - - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. - fetch-depth: 2 - - # If this run was triggered by a pull request event, then checkout - # the head of the pull request instead of the merge commit. - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - # Override language selection by uncommenting this and choosing your languages - # with: - # languages: go, javascript, csharp, python, cpp, java - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - #- name: Autobuild - # uses: github/codeql-action/autobuild@v1 - - # â„šī¸ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # âœī¸ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml deleted file mode 100644 index f4bae68..0000000 --- a/.github/workflows/deploy-docs.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Deploy Docs -on: - push: - branches: - - master - paths: - - docs/** - -defaults: - run: - working-directory: docs - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: 3.x - - run: pip install --upgrade pip - - run: pip install --upgrade setuptools wheel - - run: pip install mkdocs mkdocs-material pymdown-extensions - - run: mkdocs gh-deploy --force diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 960df71..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Release -on: - push: - branches: - - master - -jobs: - build: - name: Release - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Release - uses: justincy/github-action-npm-release@2.0.2 - id: release - - name: Print release output - if: ${{ steps.release.outputs.released == 'true' }} - run: echo Release ID ${{ steps.release.outputs.release_id }}