From a20bdb8258f46290c6ea99dd6e73f2af592182fa Mon Sep 17 00:00:00 2001 From: shinhee818 Date: Sun, 8 Jun 2025 22:01:57 +0900 Subject: [PATCH 1/5] Add push.yaml --- .github/workflows/push.yaml | 9 +++++++++ .idea/.gitignore | 8 ++++++++ .idea/github-actions.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ 6 files changed, 46 insertions(+) create mode 100644 .github/workflows/push.yaml create mode 100644 .idea/.gitignore create mode 100644 .idea/github-actions.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml new file mode 100644 index 000000000..a1fa629da --- /dev/null +++ b/.github/workflows/push.yaml @@ -0,0 +1,9 @@ +name: push-workflow +on: push + +jobs: + push-job: + runs-on: ubuntu-latest + steps: + - name: step1 + run: echo hello world diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..c3f502a19 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 디폴트 무시된 파일 +/shelf/ +/workspace.xml +# 에디터 기반 HTTP 클라이언트 요청 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/github-actions.iml b/.idea/github-actions.iml new file mode 100644 index 000000000..d6ebd4805 --- /dev/null +++ b/.idea/github-actions.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..47478b911 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..e152f1a5c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..35eb1ddfb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From b6bfc6d50f99670be72b2d3119f04b2708808538 Mon Sep 17 00:00:00 2001 From: shinhee818 Date: Sun, 8 Jun 2025 22:02:59 +0900 Subject: [PATCH 2/5] Add push.yaml --- .github/workflows/push.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index a1fa629da..ce889531c 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -7,3 +7,7 @@ jobs: steps: - name: step1 run: echo hello world + - name: step2 + run: | + echo hello world + echo github aciton From 4019ace9f8b0b7394e79145ef73824e8f345cf27 Mon Sep 17 00:00:00 2001 From: shinhee818 Date: Sun, 8 Jun 2025 22:04:24 +0900 Subject: [PATCH 3/5] Add push.yaml --- .github/workflows/{ => part1}/push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{ => part1}/push.yaml (87%) diff --git a/.github/workflows/push.yaml b/.github/workflows/part1/push.yaml similarity index 87% rename from .github/workflows/push.yaml rename to .github/workflows/part1/push.yaml index ce889531c..3cfb4061b 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/part1/push.yaml @@ -10,4 +10,4 @@ jobs: - name: step2 run: | echo hello world - echo github aciton + echo github action From ca307ba3195ac8d62887b3bf6df0b6056ccc7264 Mon Sep 17 00:00:00 2001 From: shinhee818 Date: Mon, 9 Jun 2025 20:36:44 +0900 Subject: [PATCH 4/5] Add pull_request.yaml --- .github/workflows/pull_request.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/pull_request.yaml diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml new file mode 100644 index 000000000..b8b3f946c --- /dev/null +++ b/.github/workflows/pull_request.yaml @@ -0,0 +1,13 @@ +name: pull-request-workflow +on: pull_request + +jobs: + pull-request-job: + runs-on: ubuntu-latest + steps: + - name: step1 + run: echo hello world + - name: step2 + run: | + echo hello world + echo github action \ No newline at end of file From 1277437d74d2b7abaa9ad8c43c3c0a6672dc2c8d Mon Sep 17 00:00:00 2001 From: shinhee818 <153713451+shinhee818@users.noreply.github.com> Date: Mon, 9 Jun 2025 20:37:46 +0900 Subject: [PATCH 5/5] Update push.yaml --- .github/workflows/part1/push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/part1/push.yaml b/.github/workflows/part1/push.yaml index 3cfb4061b..0f310607f 100644 --- a/.github/workflows/part1/push.yaml +++ b/.github/workflows/part1/push.yaml @@ -1,4 +1,4 @@ -name: push-workflow +name: push-workflow1 on: push jobs: