diff --git a/.github/workflows/part1/push.yaml b/.github/workflows/part1/push.yaml new file mode 100644 index 000000000..d3786b3b7 --- /dev/null +++ b/.github/workflows/part1/push.yaml @@ -0,0 +1,13 @@ +name: push-work +on: push + +jobs: + push-job: + runs-on: ubuntu-latest + steps: + - name: step1 + run: echo "hello world" + - name: step2 + run: | + echo hello world + echo hello github diff --git a/.github/workflows/pull_requset.yaml b/.github/workflows/pull_requset.yaml new file mode 100644 index 000000000..5987f4460 --- /dev/null +++ b/.github/workflows/pull_requset.yaml @@ -0,0 +1,13 @@ +name: pull-requset-workflow-2 +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 hello actions