-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
026b447
commit 3e6361d
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,12 +26,14 @@ jobs: | |
|
||
- name: Checkout project | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Create branch | ||
run: git checkout -b submodules-update-$TODAY | ||
|
||
- name: Run submodule updates | ||
run: git submodule update --init --remote --merge --jobs 4 | ||
run: git submodule update --remote --merge --jobs 4 | ||
|
||
- name: Commit results | ||
run: git commit -m "Update submodules $TODAY" . | ||
|
@@ -41,3 +43,17 @@ jobs: | |
|
||
- name: Open pull request | ||
run: echo 'TODO' | ||
|
||
#on: push | ||
#jobs: | ||
# build: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - run: | | ||
# date > generated.txt | ||
# git config user.name github-actions | ||
# git config user.email [email protected] | ||
# git add . | ||
# git commit -m "generated" | ||
# git push |