Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/part1/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: push-workflow 2
on: push

jobs:
push-job: #push-job이라는 job을 만듬
runs-on: ubuntu-latest #이 push-job이 우분투 머신에서 실행된다는 의미
steps:
- name: step1
run: echo hello world
- name: step2
run: |
echo hello world
echo github action
13 changes: 13 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: push-workflow
on: pull_request

jobs:
pull-request-job: #push-job이라는 job을 만듬
runs-on: ubuntu-latest #이 push-job이 우분투 머신에서 실행된다는 의미
steps:
- name: step1
run: echo hello world
- name: step2
run: |
echo hello world
echo github action