commit 2d1c7312d33ab08ae7c484c936c3aecf881c8de4 Author: Ahmed Hesham Date: Sun Sep 28 11:15:00 2025 +0300 Create main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0668045 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,14 @@ +name: First workflow + +on: + push: + branches: + - main +jobs: + example-job: + runs-on: ubuntu-latest + + steps: + - name: print a welcome message + run: echo "welcome to our first github actions workflow" +