diff --git a/.github/workflows/sleep.yaml b/.github/workflows/sleep.yaml new file mode 100644 index 0000000..26357bd --- /dev/null +++ b/.github/workflows/sleep.yaml @@ -0,0 +1,24 @@ +name: Sleep + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + workflow_dispatch: + +jobs: + once: + name: Once + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Sleep + run: sleep 20 + twice: + name: Twice + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Sleep + run: sleep 20 diff --git a/.github/workflows/speek.yaml b/.github/workflows/speek.yaml new file mode 100644 index 0000000..d711cbd --- /dev/null +++ b/.github/workflows/speek.yaml @@ -0,0 +1,24 @@ +name: Speak + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + workflow_dispatch: + +jobs: + once: + name: Once + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Speak + run: echo speaking once + twice: + name: Twice + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Speak + run: echo speaking twice diff --git a/wait-for-build/new-file.txt b/wait-for-build/new-file.txt new file mode 100644 index 0000000..7785ee9 --- /dev/null +++ b/wait-for-build/new-file.txt @@ -0,0 +1 @@ +Added ci and file \ No newline at end of file