3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-17 13:47:20 +00:00
changed-files/.github/workflows/submodule-sync.yml

29 lines
687 B
YAML
Raw Normal View History

2022-02-26 09:36:20 +00:00
on:
workflow_dispatch:
jobs:
sync:
name: Submodule Sync
runs-on: ubuntu-latest
steps:
- name: Checkout
2022-03-01 19:50:35 +00:00
uses: actions/checkout@v3
2022-02-26 09:36:20 +00:00
with:
fetch-depth: 0
submodules: recursive
- name: Git Sumbodule Update
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
2022-02-26 09:41:54 +00:00
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4.2.0
2022-02-26 09:36:20 +00:00
with:
2022-02-26 09:41:54 +00:00
title: "Updated submodule"
branch: "chore/update-submodule"
commit-message: "Updated submodule"
body: "Updated submodule"
token: ${{ secrets.PAT_TOKEN }}