From 47d7183e75990d47f499c4edaec4dcf7cd67c2ea Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 11:21:23 +0900 Subject: [PATCH 1/7] ci: add GitHub workflow for testing remote custom actions on PR --- .github/workflows/test-remote-actions.yml | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/test-remote-actions.yml diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml new file mode 100644 index 0000000..5f7777a --- /dev/null +++ b/.github/workflows/test-remote-actions.yml @@ -0,0 +1,34 @@ +# .github/workflows/test-remote-actions.yml +name: Test Remote Custom Actions + +on: + pull_request: + branches: + - main # 또는 테스트를 원하는 다른 브랜치 + +jobs: + test_actions: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 # 현재 저장소(binary01.me-notion-cms)의 코드를 체크아웃합니다. + + - name: Run Remote Greet Action + id: greet + uses: 01-binary/github-action-test/actions/greet-action@main # 원격 액션 참조 + with: + who-to-greet: 'Remote Tester Alice' + + - name: Run Remote Goodbye Action + id: goodbye + uses: 01-binary/github-action-test/actions/goodbye-action@main # 원격 액션 참조 + with: + who-to-say-goodbye: 'Remote Tester Bob' + + - name: Print Greet Action Output + run: | + echo "Greet action said: ${{ steps.greet.outputs.time }}" + + - name: Print Goodbye Action Output + run: | + echo "Goodbye action said: ${{ steps.goodbye.outputs.farewell-message }}" From 07701f7a0d89ff8899afe2cdc59dc46f85f73138 Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 11:44:55 +0900 Subject: [PATCH 2/7] =?UTF-8?q?ci:=20=EB=85=B8=EC=85=98=20CMS=20=EC=9B=90?= =?UTF-8?q?=EA=B2=A9=20=EC=95=A1=EC=85=98=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=9B=8C=ED=81=AC=ED=94=8C=EB=A1=9C=EC=9A=B0=20=EA=B5=AC?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-remote-actions.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml index 5f7777a..db964e0 100644 --- a/.github/workflows/test-remote-actions.yml +++ b/.github/workflows/test-remote-actions.yml @@ -24,11 +24,3 @@ jobs: uses: 01-binary/github-action-test/actions/goodbye-action@main # 원격 액션 참조 with: who-to-say-goodbye: 'Remote Tester Bob' - - - name: Print Greet Action Output - run: | - echo "Greet action said: ${{ steps.greet.outputs.time }}" - - - name: Print Goodbye Action Output - run: | - echo "Goodbye action said: ${{ steps.goodbye.outputs.farewell-message }}" From 7efacd9f77dcb8cef0b0c8b575f3e2403bb42512 Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 13:43:43 +0900 Subject: [PATCH 3/7] =?UTF-8?q?ci:=20Notion=20CMS=20=EC=9B=90=EA=B2=A9=20?= =?UTF-8?q?=EC=95=A1=EC=85=98=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=9B=8C?= =?UTF-8?q?=ED=81=AC=ED=94=8C=EB=A1=9C=EC=9A=B0=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-remote-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml index db964e0..b5f1054 100644 --- a/.github/workflows/test-remote-actions.yml +++ b/.github/workflows/test-remote-actions.yml @@ -15,7 +15,7 @@ jobs: - name: Run Remote Greet Action id: greet - uses: 01-binary/github-action-test/actions/greet-action@main # 원격 액션 참조 + uses: 01-binary/github-action-test/actions/greet-action@1.0.1 # 원격 액션 참조 with: who-to-greet: 'Remote Tester Alice' From 1114d4f9466f2a5b61ea483744a76bc746ad5e7a Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 13:50:22 +0900 Subject: [PATCH 4/7] =?UTF-8?q?ci:=20=EC=9B=90=EA=B2=A9=20=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20GitHub=20Workflow=20=EA=B5=AC=EC=84=B1=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-remote-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml index b5f1054..e1b7329 100644 --- a/.github/workflows/test-remote-actions.yml +++ b/.github/workflows/test-remote-actions.yml @@ -15,7 +15,7 @@ jobs: - name: Run Remote Greet Action id: greet - uses: 01-binary/github-action-test/actions/greet-action@1.0.1 # 원격 액션 참조 + uses: 01-binary/github-action-test/actions/greet-action@@greet-action-v1.0.1 # 원격 액션 참조 with: who-to-greet: 'Remote Tester Alice' From 9b78ce0950622a2cd7d17eff5ed519a028149bd1 Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 13:51:33 +0900 Subject: [PATCH 5/7] =?UTF-8?q?ci:=20=EC=9B=90=EA=B2=A9=20=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20GitHub=20Workflow=20=EA=B5=AC=EC=84=B1=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-remote-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml index e1b7329..70a3ca6 100644 --- a/.github/workflows/test-remote-actions.yml +++ b/.github/workflows/test-remote-actions.yml @@ -15,7 +15,7 @@ jobs: - name: Run Remote Greet Action id: greet - uses: 01-binary/github-action-test/actions/greet-action@@greet-action-v1.0.1 # 원격 액션 참조 + uses: 01-binary/github-action-test/actions/greet-action@greet-action-v1.0.1 # 원격 액션 참조 with: who-to-greet: 'Remote Tester Alice' From 336c6539818b4c9317a4c72083329cb5e22940d8 Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 13:52:29 +0900 Subject: [PATCH 6/7] =?UTF-8?q?test:=20=EC=9B=90=EA=B2=A9=20=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20GitHub=20Actions=20=EC=9B=8C=ED=81=AC=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=EC=9A=B0=20=EA=B5=AC=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-remote-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml index 70a3ca6..17b2fe0 100644 --- a/.github/workflows/test-remote-actions.yml +++ b/.github/workflows/test-remote-actions.yml @@ -15,7 +15,7 @@ jobs: - name: Run Remote Greet Action id: greet - uses: 01-binary/github-action-test/actions/greet-action@greet-action-v1.0.1 # 원격 액션 참조 + uses: 01-binary/github-action-test/actions/greet-action@greet-action@1.0.1 # 원격 액션 참조 with: who-to-greet: 'Remote Tester Alice' From c459d537172b765c2d088e6f6300237348b05c8a Mon Sep 17 00:00:00 2001 From: jinsoo Date: Mon, 2 Jun 2025 13:53:14 +0900 Subject: [PATCH 7/7] =?UTF-8?q?ci:=20=EC=9B=90=EA=B2=A9=20=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20GitHub=20Actions=20=EC=9B=8C=ED=81=AC=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=EC=9A=B0=20=EA=B5=AC=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-remote-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-remote-actions.yml b/.github/workflows/test-remote-actions.yml index 17b2fe0..70a3ca6 100644 --- a/.github/workflows/test-remote-actions.yml +++ b/.github/workflows/test-remote-actions.yml @@ -15,7 +15,7 @@ jobs: - name: Run Remote Greet Action id: greet - uses: 01-binary/github-action-test/actions/greet-action@greet-action@1.0.1 # 원격 액션 참조 + uses: 01-binary/github-action-test/actions/greet-action@greet-action-v1.0.1 # 원격 액션 참조 with: who-to-greet: 'Remote Tester Alice'