aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md27
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md7
-rw-r--r--.github/workflows/deploy.yml55
3 files changed, 0 insertions, 89 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index b62c156..0000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-name: Bug report
-about: Something's wrong, you can feel it
-title: "[Bug]: "
-labels: "bug"
-assignees: 'pml68'
----
-
-**Type**
-As in, "Non-responsive element" or "Build fails", "404 error" etc.
-
-**Describe the bug**
-If you can't describe it, then leave.
-
-**How to reproduce it**
-If it happened during a certain action, how exactly?
-
-**Expected behavior**
-Describe what you expected to happen.
-
-**Actual behavior**
-Describe what actually happened.
-
-**Screenshots or logs**
-
-**Optional messages**
-Anything else you'd like to mention.
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 34bc22e..0000000
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,7 +0,0 @@
-_Description of what this PR is changing or adding, and why:_
-
-_Issues fixed by this PR (if any):_
-
-## Presubmit checklist
-
-- [ ] You have confirmed that there are no [PRs](https://github.com/pml68/website/pulls) closely related to yours in terms of changes.
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
deleted file mode 100644
index 2f59c7a..0000000
--- a/.github/workflows/deploy.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-name: Deploy to GitHub Pages
-
-on:
- release:
- types: [published]
- workflow_dispatch:
-
-jobs:
- build_site:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v4
-
- - name: Install pnpm
- uses: pnpm/action-setup@v3
- with:
- version: 8
-
- - name: Install NodeJS
- uses: actions/setup-node@v4
- with:
- node-version: 20
- cache: pnpm
-
- - name: Install dependencies
- run: pnpm install
-
- - name: Build
- env:
- BASE_PATH: ''
- run: |
- pnpm build
-
- - name: Upload files
- uses: actions/upload-pages-artifact@v3
- with:
- path: 'build/'
-
- deploy:
- needs: build_site
- runs-on: ubuntu-latest
-
- permissions:
- pages: write
- id-token: write
-
- environment:
- name: github-pages
- url: ${{steps.deployment.outputs.page_url}}
-
- steps:
- - name: Deploy
- id: deployment
- uses: actions/deploy-pages@v4