diff --git a/.github/workflows/ci-test-success.yml b/.github/workflows/ci-test-success.yml new file mode 100644 index 0000000..c42af7e --- /dev/null +++ b/.github/workflows/ci-test-success.yml @@ -0,0 +1,21 @@ +name: Test success + +on: [push] + +jobs: + call-workflow-show_time: + uses: ivvorg/public-test-repo/.github/workflows/show_time.yml@main + + display-time: + # This job runs on the latest Ubuntu runner provided by GitHub Actions + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job. + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Show current time 2 + run: | + echo "The current time 2 $(date)" +