mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 22:53:34 +00:00
29 lines
679 B
YAML
29 lines
679 B
YAML
name: Fetch Dependencies
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Run daily
|
|
|
|
jobs:
|
|
update-dependencies:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Fetch Dependencies
|
|
run: cd scripts && bash ./fetch_dependencies.sh
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
title: update dependencies
|
|
commit-message: update dependencies
|
|
committer: GitHub <noreply@github.com>
|
|
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
|
|
signoff: false
|
|
base: indev
|
|
labels: |
|
|
automated
|