Files
MacroLibX/.github/workflows/fetch_dependencies.yml
2023-12-31 13:45:25 +01:00

34 lines
785 B
YAML

name: Fetch Dependencies
on:
push:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- 'README.md'
# 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: bash ./scripts/fetch_dependencies.sh; date +%s > report.txt
- 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