From d35970d4e8b946f5d7d67011b98a36c0f117e423 Mon Sep 17 00:00:00 2001 From: chrisdca Date: Tue, 17 Jun 2025 15:41:31 -0500 Subject: [PATCH 1/6] update home --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e17cc92..23f89a1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ export default function Home() { return (
-

My first deploy with Github Actions

+

My first deploy with Github Actions and use my own action

); From 9b71ed086cfe80dc6d2f62d0665144922de5d145 Mon Sep 17 00:00:00 2001 From: chrisdca Date: Tue, 17 Jun 2025 15:57:42 -0500 Subject: [PATCH 2/6] update heading to reflect version 2 of the custom action --- .github/workflows/workflow-pr.yml | 2 +- src/app/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow-pr.yml b/.github/workflows/workflow-pr.yml index 296dd00..a59c91d 100644 --- a/.github/workflows/workflow-pr.yml +++ b/.github/workflows/workflow-pr.yml @@ -22,4 +22,4 @@ jobs: - name: PR total changes uses: christianncode/pr-total-changes@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/app/page.tsx b/src/app/page.tsx index 23f89a1..70324fd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ export default function Home() { return (
-

My first deploy with Github Actions and use my own action

+

My first deploy with Github Actions and use my own action v2

); From 3672e0553b77dd86851f4223070c4484e943a940 Mon Sep 17 00:00:00 2001 From: chrisdca Date: Tue, 17 Jun 2025 16:09:12 -0500 Subject: [PATCH 3/6] update action version in workflow and homepage heading to v1.1 --- .github/workflows/workflow-pr.yml | 2 +- src/app/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow-pr.yml b/.github/workflows/workflow-pr.yml index a59c91d..20a735d 100644 --- a/.github/workflows/workflow-pr.yml +++ b/.github/workflows/workflow-pr.yml @@ -20,6 +20,6 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: PR total changes - uses: christianncode/pr-total-changes@v1 + uses: christianncode/pr-total-changes@v1.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/app/page.tsx b/src/app/page.tsx index 70324fd..0fa9fed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ export default function Home() { return (
-

My first deploy with Github Actions and use my own action v2

+

My first deploy with Github Actions and use my own action v1.1

); From 7865c9733a55da8d595945e8411a5ba0f012ecc3 Mon Sep 17 00:00:00 2001 From: chrisdca Date: Tue, 17 Jun 2025 23:26:45 -0500 Subject: [PATCH 4/6] update action version in workflow and homepage heading to v1.2 --- .github/workflows/workflow-pr.yml | 2 +- src/app/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow-pr.yml b/.github/workflows/workflow-pr.yml index 20a735d..6da2a8d 100644 --- a/.github/workflows/workflow-pr.yml +++ b/.github/workflows/workflow-pr.yml @@ -20,6 +20,6 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: PR total changes - uses: christianncode/pr-total-changes@v1.1 + uses: christianncode/pr-total-changes@v1.2 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0fa9fed..6b07ce1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ export default function Home() { return (
-

My first deploy with Github Actions and use my own action v1.1

+

My first deploy with Github Actions and use my own action v1.2

); From 66844f71590b9aba9d090d8cf27f080c7917a5a4 Mon Sep 17 00:00:00 2001 From: chrisdca Date: Tue, 17 Jun 2025 23:34:34 -0500 Subject: [PATCH 5/6] update homepage heading to emphasize first deploy with GitHub Actions --- src/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6b07ce1..fe5050a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,9 @@ export default function Home() { return (
-

My first deploy with Github Actions and use my own action v1.2

+

+ My first deploy with Github Actions and use my own action v1.2 !!! +

); From a90094d72b46794bf11de2e62244a89752b87f52 Mon Sep 17 00:00:00 2001 From: chrisdca Date: Tue, 1 Jul 2025 13:10:15 -0500 Subject: [PATCH 6/6] update action version in workflow to v1 and fix token casing --- .github/workflows/workflow-pr.yml | 4 ++-- src/app/page.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow-pr.yml b/.github/workflows/workflow-pr.yml index 6da2a8d..ab65c90 100644 --- a/.github/workflows/workflow-pr.yml +++ b/.github/workflows/workflow-pr.yml @@ -20,6 +20,6 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: PR total changes - uses: christianncode/pr-total-changes@v1.2 + uses: christianncode/pr-total-changes@v1 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/app/page.tsx b/src/app/page.tsx index fe5050a..76aa40b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ export default function Home() {

- My first deploy with Github Actions and use my own action v1.2 !!! + My first deploy with Github Actions and use my own action v1 !!!