diff --git a/.github/workflows/pra-01-Hello-World.yaml b/.github/workflows/pra-01-Hello-World.yaml new file mode 100644 index 00000000..f5ee4061 --- /dev/null +++ b/.github/workflows/pra-01-Hello-World.yaml @@ -0,0 +1,7 @@ +name: Hello World 111 +on: workflow_dispatch +jobs: + echo-HelloWorld: + runs-on: ubuntu-24.04 + steps: + - run: echo "Hello World" diff --git a/.github/workflows/pra-02-3steps.yaml b/.github/workflows/pra-02-3steps.yaml new file mode 100644 index 00000000..47becc2d --- /dev/null +++ b/.github/workflows/pra-02-3steps.yaml @@ -0,0 +1,18 @@ +name: 3 steps +on: workflow_dispatch +jobs: + echo-hello: + runs-on: ubuntu-24.04 + steps: + - run: echo "Hello World" + print-hello: + runs-on: ubuntu-24.04 + steps: + - run: print("Hello World") + shell: python + run-github-action: + runs-on: ubuntu-24.04 + steps: + - uses: actions/hello-world-javascript-action@v1 + with: + who-to-greet: 'Hello' \ No newline at end of file diff --git a/.github/workflows/pra-03-stepbystep.yaml b/.github/workflows/pra-03-stepbystep.yaml new file mode 100644 index 00000000..ed145ca9 --- /dev/null +++ b/.github/workflows/pra-03-stepbystep.yaml @@ -0,0 +1,21 @@ +name: stepbystep1 +on: workflow_dispatch +jobs: + job1: + runs-on: ubuntu-24.04 + steps: + - run: echo 'run job 1' + job2: + runs-on: ubuntu-24.04 + steps: + - run: echo 'run job 2' + job3: + runs-on: ubuntu-24.04 + needs: [job1, job2] + steps: + - run: echo 'run job 3' + job4: + runs-on: ubuntu-24.04 + needs: [job1, job3] + steps: + - run: echo 'run job 4' \ No newline at end of file diff --git a/.github/workflows/pra04-pull-request.yaml b/.github/workflows/pra04-pull-request.yaml new file mode 100644 index 00000000..af6fdd79 --- /dev/null +++ b/.github/workflows/pra04-pull-request.yaml @@ -0,0 +1,20 @@ +name: pull request 1 +on: + push: + branches: + - 'example-branch/*' + pull_request: + types: + - opened + - reopened + - synchronize + paths: + - '!03-core-features/filters/excluded-file.txt' + - '03-core-features/filters/included-file.md' + workflow_dispatch: +jobs: + echo-hello: + runs-on: ubuntu-24.04 + steps: + - name: hello + run: cat "$GITHUB_EVENT_PATH" diff --git a/01-history-and-motivation/README.md b/01-history-and-motivation/README.md index 0d0d9b12..04bdaa97 100644 --- a/01-history-and-motivation/README.md +++ b/01-history-and-motivation/README.md @@ -14,7 +14,7 @@ The time between writing and shipping software has shrunk drastically over the d | ☁️ 2010s–Now | **CI/CD pipelines & cloud** | Multiple times per day | ![](./readme-assets/speed-of-delivery-over-time.png) - +Hello gay ## History of CI Systems | Year | CI Tool | Significance | diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index e69de29b..b6fc4c62 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +hello \ No newline at end of file diff --git a/06-authoring-actions/javascript-actions/javascript-action-with-build b/06-authoring-actions/javascript-actions/javascript-action-with-build index 08a9e4f7..2b5a15c4 160000 --- a/06-authoring-actions/javascript-actions/javascript-action-with-build +++ b/06-authoring-actions/javascript-actions/javascript-action-with-build @@ -1 +1 @@ -Subproject commit 08a9e4f70066adab8fa53838825f05be0ca0c25d +Subproject commit 2b5a15c4b7560d023e0528069bd5751498e1b31d