Skip to content

Commit

Permalink
Create github-actions-demo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cgalunza authored Jan 23, 2024
1 parent cc4e84f commit 29ec9c5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: GitHub Actions Demo

on:
push:
branches: [ main ]
paths-ignore: [.github/**]
pull_request:
branches: [ main ]
schedule:
- cron: '15 6 * * 0'
workflow_dispatch:

jobs:
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/[email protected]

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

0 comments on commit 29ec9c5

Please sign in to comment.