Skip to content

Commit

Permalink
Create five-mint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroEng98 authored Nov 27, 2024
1 parent 9fa9798 commit f905a38
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/five-mint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Run Every 5 Minutes

on:
schedule:
- cron: '*/5 * * * *' # Ejecuta cada 5 minutos

jobs:
example_job:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run a script
run: echo "Esto se ejecuta cada 5 minutos!"

0 comments on commit f905a38

Please sign in to comment.