Skip to content

Commit

Permalink
Create update_submodule.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePat02 committed Jan 4, 2024
1 parent f3ba582 commit 7508e73
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/update_submodule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will update the submodule branch

name: Update Submodule Branch

on:
push:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2


- name: Update from Main
run: |
git config --local user.email "${{ secrets.OWNER_MAIL }}"
git config --local user.name "${{ secrets.OWNER_USERNAME }}"
git checkout submodule
git rm -r .
git checkout main -- addons/behaviour_toolkit
mv addons/behaviour_toolkit/* .
git rm -r addons/behaviour_toolkit
git commit -m Updated Submodule from Main
git push

0 comments on commit 7508e73

Please sign in to comment.