Skip to content
Open
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
21 changes: 21 additions & 0 deletions .github/workflows/custom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Custom Workflow

on:
push:
branches: [develop]

jobs:
custom-job:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Print message
run: echo "first custom workflow"

- name: print current time
run: date

- name: success message
run: echo "Workflow completed successfully!"
3 changes: 2 additions & 1 deletion .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ jobs:
run: ls -la

- name: Print success message
run: echo "βœ… Workflow completed successfully!"
run: echo "βœ… Workflow completed successfully! run when push"
#this is a comment