Fetch Dependencies #313
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fetch Dependencies | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # Runs weekly | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Run Fetch Dependencies Script | |
run: cd scripts && bash ./fetch_dependencies.sh | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: update dependencies | |
commit-message: "[BOT] update dependencies" | |
committer: GitHub <noreply@github.com> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
signoff: false | |
base: indev | |
branch: auto_deps_updates | |
labels: | | |
automated |