diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml index 7a87b53f1..b2c5b081d 100644 --- a/.github/workflows/custom-action.yml +++ b/.github/workflows/custom-action.yml @@ -12,4 +12,7 @@ jobs: name: 'Brown' # Use the output from the `hello` step - name: Get the Output - run: echo "The time was ${{ steps.hello.outputs.greeting }}" \ No newline at end of file + run: echo "The time was ${{ steps.hello.outputs.greeting }}" + + notify: + \ No newline at end of file diff --git a/.github/workflows/hellow.yml b/.github/workflows/hellow.yml new file mode 100644 index 000000000..886aa4558 --- /dev/null +++ b/.github/workflows/hellow.yml @@ -0,0 +1,22 @@ +name: hello world + +on: + + schedule: + - cron : "*/2 * * * *" + workflow_dispatch: + +jobs: + hello: + runs-on: ubuntu-latest + name: my-job + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: hello + run: | + echo "REF: $GITHUB_REF" + echo "Job ID: $GITHUB_JOB" + echo "Action: $GITHUB_ACTION" + echo "Actor: $GITHUB_ACTOR" diff --git a/test.py b/test.py new file mode 100644 index 000000000..e1e99cd35 --- /dev/null +++ b/test.py @@ -0,0 +1 @@ +print("WOW")