From d0918fb41c3d0da217a08232317717ca500beff2 Mon Sep 17 00:00:00 2001 From: Topindy <56523660+Topindy@users.noreply.github.com> Date: Sat, 18 Jan 2025 18:32:02 +0700 Subject: [PATCH 1/3] 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 000000000..0ba82305f --- /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: ["master"] + + # 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 cb1d3a5a39976fb5d3424399f03079159d699629 Mon Sep 17 00:00:00 2001 From: Topindy <56523660+Topindy@users.noreply.github.com> Date: Sat, 18 Jan 2025 18:37:02 +0700 Subject: [PATCH 2/3] Create manual.yml --- .github/workflows/manual.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/manual.yml diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 000000000..11b2e3558 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" From 52e3abdff88d91f4eb8cc2aa8a2ea93cf215d9a7 Mon Sep 17 00:00:00 2001 From: Topindy <56523660+Topindy@users.noreply.github.com> Date: Sat, 18 Jan 2025 18:39:19 +0700 Subject: [PATCH 3/3] Create angry-kiwis-help.md --- .changeset/angry-kiwis-help.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/angry-kiwis-help.md diff --git a/.changeset/angry-kiwis-help.md b/.changeset/angry-kiwis-help.md new file mode 100644 index 000000000..7bd42a9e7 --- /dev/null +++ b/.changeset/angry-kiwis-help.md @@ -0,0 +1,5 @@ +--- +"fnm": patch +--- + +yo