mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
907 B
YAML
35 lines
907 B
YAML
name: Fetch Dependencies
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # Runs weekly
|
|
|
|
jobs:
|
|
update-dependencies:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run Fetch Dependencies Script
|
|
run: cd scripts && bash ./fetch_dependencies.sh
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
token: ${{ secrets.REPO_SCOPED_TOKEN }}
|
|
delete-branch: true
|
|
title: update dependencies
|
|
commit-message: "[BOT] update dependencies"
|
|
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
author: kbJeff-8 <kbJeff-8@users.noreply.github.com>
|
|
signoff: false
|
|
base: indev
|
|
assignees: Kbz-8
|
|
reviewers: Kbz-8
|
|
branch: auto_deps_updates
|
|
labels: |
|
|
automated
|