From 55736b94fe1df9d805bdfc0ac83b9dd5a91f4806 Mon Sep 17 00:00:00 2001 From: Tack kee Date: Sat, 10 Jan 2026 15:45:53 +0700 Subject: [PATCH 1/4] Create static.yml --- .github/workflows/static.yml | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..f2c9e97 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 From daa3c17932be012f2b032fb48117278f8a885904 Mon Sep 17 00:00:00 2001 From: Tack kee Date: Sat, 10 Jan 2026 16:00:16 +0700 Subject: [PATCH 2/4] Update linter.yml --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index c199bb4..2c0bef7 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -57,4 +57,4 @@ jobs: VALIDATE_JAVASCRIPT_ES: false VALIDATE_JSCPD: false VALIDATE_TYPESCRIPT_ES: false - VALIDATE_JSON: false + VALIDATE_JSON: true From 762f0c4cab83f647e37b5c9f421d863f6fb24d9c Mon Sep 17 00:00:00 2001 From: Tack kee Date: Sat, 10 Jan 2026 16:01:39 +0700 Subject: [PATCH 3/4] Create SECURITY.md --- SECURITY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..034e848 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. From 6f1cf6835b3538cac791a1e092670efd93456cb7 Mon Sep 17 00:00:00 2001 From: Tack kee Date: Sat, 10 Jan 2026 16:11:17 +0700 Subject: [PATCH 4/4] Update dependabot.yml --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d275346..c312fa8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,3 +28,4 @@ updates: dependency-type: production update-types: - patch + - minor