Skip to content

Commit

Permalink
Create github-actions-demo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aboissiere-ledger authored Mar 27, 2024
1 parent d47b0f5 commit 7b302ca
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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 "Event: ${{ github.event_name }}"
echo "Branch: ${{ github.ref }}"


0 comments on commit 7b302ca

Please sign in to comment.