From 39f26d68811d026c34ea0f21cceb9236192d719c Mon Sep 17 00:00:00 2001 From: kenlhlui <116421546+kenlhlui@users.noreply.github.com> Date: Wed, 10 Dec 2025 01:01:29 -0500 Subject: [PATCH 1/2] ci: ignore [skip ci] in deploy workflow --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 868dec4..d72c1b7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,4 +1,3 @@ ---- # This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support @@ -16,7 +15,7 @@ on: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: - contents: write + contents: read pages: write id-token: write @@ -26,9 +25,9 @@ concurrency: cancel-in-progress: true jobs: - # Build job build: + if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !contains(github.event.head_commit.message, '[skip ci]')) }} runs-on: ubuntu-latest steps: - name: Checkout @@ -55,6 +54,7 @@ jobs: # Deployment job deploy: + if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !contains(github.event.head_commit.message, '[skip ci]')) }} environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} From 718726184beaf0e010cc143cf05bcb80bc6cde14 Mon Sep 17 00:00:00 2001 From: kenlhlui <116421546+kenlhlui@users.noreply.github.com> Date: Wed, 10 Dec 2025 01:02:55 -0500 Subject: [PATCH 2/2] feat: dummy push