Skip to content

Commit

Permalink
Create github-actions-demo.yml.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
madkoo authored Sep 24, 2024
1 parent 934ea96 commit 6b8a11d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/github-actions-demo.yml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Github Actions Demo

on:
push:
branches: main
pull_request:
branches: main
workflow_dispatch:
schedule:
- cron: '15 6 * * 0'

jobs:
Build:
name: Build
runs-on: ubuntu-latest
steps:
- run: |
echo "🎉 The job was triggered by event: ${{ github.event_name }}"
echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ."
- uses: actions/checkout@v4

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

0 comments on commit 6b8a11d

Please sign in to comment.