Skip to content

Commit

Permalink
Update update-submodules.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danipoal authored Feb 17, 2025
1 parent c2b7007 commit be12eed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
- cron: '0 0 * * *' # Ejecutar diariamente a medianoche
workflow_dispatch: # Permitir ejecución manual

permissions:
contents: write # Necesario para hacer push en el repositorio
pull-requests: write # Necesario para manipular pull requests

jobs:
update-submodules:
runs-on: ubuntu-latest
Expand All @@ -16,7 +20,6 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}

- name: Update submodules
run: |
Expand Down Expand Up @@ -58,3 +61,4 @@ jobs:
base: main
delete-branch: true
body: "This PR updates the submodules to their latest commits."

0 comments on commit be12eed

Please sign in to comment.