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/part1/issue.yaml b/.github/workflows/part1/issue.yaml
new file mode 100644
index 000000000..41e09534a
--- /dev/null
+++ b/.github/workflows/part1/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
diff --git a/.github/workflows/part1/pull_request.yaml b/.github/workflows/part1/pull_request.yaml
new file mode 100644
index 000000000..fee5ed71f
--- /dev/null
+++ b/.github/workflows/part1/pull_request.yaml
@@ -0,0 +1,15 @@
+name: pull-request-workflow
+on:
+ pull_request:
+ types: [opened]
+
+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/.github/workflows/part1/push.yaml b/.github/workflows/part1/push.yaml
new file mode 100644
index 000000000..bb12e3db4
--- /dev/null
+++ b/.github/workflows/part1/push.yaml
@@ -0,0 +1,13 @@
+name: push-workflow
+on: push
+
+jobs:
+ push-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
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