Skip to content

Commit

Permalink
Create MyFirstWorkflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nibushi authored Apr 11, 2024
1 parent d516ddf commit 7b4c470
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/MyFirstWorkflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: My First Workflow

on:
push:
branches:
- main
workflow_dispatch:

jobs:
MyFirstJob:
runs-on: ubuntu-latest

steps:
- run: echo "👋 Hello World!"

- name: Checkout
uses: actions/[email protected]

- name: List files in repository
run: |
echo "The repository ${{ github.repository }} contains the following files:"
tree

0 comments on commit 7b4c470

Please sign in to comment.