Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/custom-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
run: echo "The time was ${{ steps.hello.outputs.greeting }}"

notify:

22 changes: 22 additions & 0 deletions .github/workflows/hellow.yml
Original file line number Diff line number Diff line change
@@ -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"
1 change: 1 addition & 0 deletions test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("WOW")