From 20cd72c5f22663a2e1ea9b5b01c568b99e28377b Mon Sep 17 00:00:00 2001 From: hoorooroo Date: Mon, 18 Nov 2024 22:29:23 +0900 Subject: [PATCH 1/9] Add push.yaml --- .github/workflows/push.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/push.yaml diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml new file mode 100644 index 000000000..60940c899 --- /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 \ No newline at end of file From 4d47ca20d21673094bbb70165a7e794650f75694 Mon Sep 17 00:00:00 2001 From: hoorooroo Date: Mon, 18 Nov 2024 22:37:19 +0900 Subject: [PATCH 2/9] Add push.yaml --- .github/workflows/push.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 60940c899..bb12e3db4 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -6,4 +6,8 @@ jobs: runs-on: ubuntu-latest steps: - name: step1 - run: echo hello world \ No newline at end of file + run: echo hello world + - name: step2 + run: | + echo hello world + echo github action \ No newline at end of file From 1dd2ee9e4e627c3d07725988672eb759094653d9 Mon Sep 17 00:00:00 2001 From: hoorooroo Date: Mon, 18 Nov 2024 22:49:03 +0900 Subject: [PATCH 3/9] Add pull_request.yaml --- .github/workflows/{ => part1}/push.yaml | 0 .github/workflows/pull_request.yaml | 13 +++++++++++++ .idea/.gitignore | 8 ++++++++ .idea/github-actions.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ 7 files changed, 50 insertions(+) rename .github/workflows/{ => part1}/push.yaml (100%) create mode 100644 .github/workflows/pull_request.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/part1/push.yaml similarity index 100% rename from .github/workflows/push.yaml rename to .github/workflows/part1/push.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 diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..13566b81b --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/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..639900d13 --- /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 a5744c2700c95c1a8adb1f4bb254158e066c4a3e Mon Sep 17 00:00:00 2001 From: hoorooroo Date: Mon, 18 Nov 2024 22:56:17 +0900 Subject: [PATCH 4/9] Add pull_request.yaml --- .github/workflows/pull_request.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index b8b3f946c..fee5ed71f 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -1,5 +1,7 @@ name: pull-request-workflow -on: pull_request +on: + pull_request: + types: [opened] jobs: pull-request-job: From 52b04f5bf0ac5ea5786aa88100ed316f9dbb1a51 Mon Sep 17 00:00:00 2001 From: "mason.song" Date: Thu, 18 Sep 2025 01:22:18 +0900 Subject: [PATCH 5/9] Add issue.yaml --- .github/workflows/part1/issue.yaml | 15 +++++++++++++++ .github/workflows/{ => part1}/pull_request.yaml | 0 2 files changed, 15 insertions(+) create mode 100644 .github/workflows/part1/issue.yaml rename .github/workflows/{ => part1}/pull_request.yaml (100%) diff --git a/.github/workflows/part1/issue.yaml b/.github/workflows/part1/issue.yaml new file mode 100644 index 000000000..fc3491a28 --- /dev/null +++ b/.github/workflows/part1/issue.yaml @@ -0,0 +1,15 @@ +name: issue-workflow +on: + issue: + types: [opened] + +jobs: + issue-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 diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/part1/pull_request.yaml similarity index 100% rename from .github/workflows/pull_request.yaml rename to .github/workflows/part1/pull_request.yaml From a24c51c15ec6fd13c91bcae022171d2a0d0a637b Mon Sep 17 00:00:00 2001 From: "mason.song" Date: Thu, 18 Sep 2025 01:23:38 +0900 Subject: [PATCH 6/9] move issue.yaml --- .github/workflows/{part1 => }/issue.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{part1 => }/issue.yaml (100%) diff --git a/.github/workflows/part1/issue.yaml b/.github/workflows/issue.yaml similarity index 100% rename from .github/workflows/part1/issue.yaml rename to .github/workflows/issue.yaml From 80fe4e5168a82a0a281489b1406759d6ecb754be Mon Sep 17 00:00:00 2001 From: "mason.song" Date: Thu, 18 Sep 2025 01:26:25 +0900 Subject: [PATCH 7/9] change --- .github/workflows/issue.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue.yaml b/.github/workflows/issue.yaml index fc3491a28..41e09534a 100644 --- a/.github/workflows/issue.yaml +++ b/.github/workflows/issue.yaml @@ -1,6 +1,6 @@ name: issue-workflow on: - issue: + issues: types: [opened] jobs: From ff7f7e23d84982a6ebfb996fecf358ff8abca838 Mon Sep 17 00:00:00 2001 From: "mason.song" Date: Thu, 18 Sep 2025 02:21:34 +0900 Subject: [PATCH 8/9] Add issue_comment.yaml --- .github/workflows/issue_comment.yaml | 17 +++++++++++++++++ .github/workflows/{ => part1}/issue.yaml | 0 2 files changed, 17 insertions(+) create mode 100644 .github/workflows/issue_comment.yaml rename .github/workflows/{ => part1}/issue.yaml (100%) diff --git a/.github/workflows/issue_comment.yaml b/.github/workflows/issue_comment.yaml new file mode 100644 index 000000000..dc0c96397 --- /dev/null +++ b/.github/workflows/issue_comment.yaml @@ -0,0 +1,17 @@ +name: issue-comment-workflow +on: issue_comment + +jobs: + pr-comment: + if: ${{ github.event.issue.pull_request }} + runs-on: ubuntu-latest + steps: + - name: pr comment + run: echo ${{ github.event.issue.pull_request }} + + issue-comment: + if: ${{ !github.event.issue.pull_request }} + runs-on: ubuntu-latest + steps: + - name: issue comment + run: echo ${{ github.event.issue.pull_request }} \ No newline at end of file diff --git a/.github/workflows/issue.yaml b/.github/workflows/part1/issue.yaml similarity index 100% rename from .github/workflows/issue.yaml rename to .github/workflows/part1/issue.yaml From e34cf26a2c29a259ecda15bc94b2077e5890dc45 Mon Sep 17 00:00:00 2001 From: Hoorooroo <88654739+Hoorooroo@users.noreply.github.com> Date: Thu, 18 Sep 2025 02:22:40 +0900 Subject: [PATCH 9/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea85d664a..f794ef38f 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# github-actions-setting \ No newline at end of file +# github-actions-setting 1