chore: Update submodule to latest commit
This commit is contained in:
parent
9f915abaed
commit
85ed280531
33
.github/workflows/update.yml
vendored
Normal file
33
.github/workflows/update.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
name: Update Submodule
|
||||
on:
|
||||
repository_dispatch:
|
||||
types:
|
||||
- update-submodule
|
||||
jobs:
|
||||
update-submodule:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ secrets.PAT }}
|
||||
submodules: recursive
|
||||
- name: Authorize Git
|
||||
run: |
|
||||
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
git config --global user.name "$GITHUB_ACTOR"
|
||||
- name: Update submodule
|
||||
run: |
|
||||
git submodule update --init --recursive --remote -f
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git add writings
|
||||
git commit -m "Update submodule to latest commit"
|
||||
git push origin main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
Loading…
x
Reference in New Issue
Block a user