From 3e44822feee895a4aa020b5d025dc32f68f172c9 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 10 Nov 2025 21:44:57 +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..ca551b2db --- /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 2c0a41ea5e805c556e2557b44d7ef646ae484c97 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 10 Nov 2025 21:52:55 +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 ca551b2db..dd37a3344 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 0d62b6e267e751d333bba7d59475ed4b59e56743 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 10 Nov 2025 21:56:58 +0900 Subject: [PATCH 3/9] Add push.yaml --- .github/workflows/{ => part1}/push.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{ => part1}/push.yaml (100%) 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 From ffc78e290c533a6e3994bae6b031547ef6cdb626 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 10 Nov 2025 22:11:34 +0900 Subject: [PATCH 4/9] 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..5d0fa9924 --- /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 2d7886ffd4a2d7d4098bb7945054b9092795d698 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 10 Nov 2025 22:35:24 +0900 Subject: [PATCH 5/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 5d0fa9924..25e184468 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 6b866df5a7c636e3e05afc40ef1774840ab2c186 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 24 Nov 2025 14:00:21 +0900 Subject: [PATCH 6/9] Add issue.yaml --- .github/workflows/issue.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/issue.yaml diff --git a/.github/workflows/issue.yaml b/.github/workflows/issue.yaml new file mode 100644 index 000000000..ceaed672b --- /dev/null +++ b/.github/workflows/issue.yaml @@ -0,0 +1,15 @@ +name: issue-workflow +on: + issues: + 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 From 5bc2dda3056aed14f33537f84746a82a0b8deaf3 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 24 Nov 2025 14:28:42 +0900 Subject: [PATCH 7/9] Add issue_comment.yaml --- .github/workflows/issue_comment.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/issue_comment.yaml diff --git a/.github/workflows/issue_comment.yaml b/.github/workflows/issue_comment.yaml new file mode 100644 index 000000000..b51c8d824 --- /dev/null +++ b/.github/workflows/issue_comment.yaml @@ -0,0 +1,18 @@ +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 }} + From e67885e6a178787cf883356d69832f0c5f844ef7 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 24 Nov 2025 14:33:19 +0900 Subject: [PATCH 8/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 From 6ca06dcaa57a9116a92bbd8bafe23555794ec895 Mon Sep 17 00:00:00 2001 From: J Date: Mon, 24 Nov 2025 14:44:36 +0900 Subject: [PATCH 9/9] Update README2.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f794ef38f..7d1c29f07 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# github-actions-setting 1 +# github-actions-setting 2