-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only commit ps modules and add git config
- Loading branch information
Showing
1 changed file
with
4 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 |
---|---|---|
|
@@ -145,11 +145,14 @@ jobs: | |
|
||
- name: Create and checkout dynamic branch | ||
run: | | ||
#Git config for creating PR | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
# Create a dynamic branch name using the run_id or sha | ||
branch_name="update-modules-${{ github.run_id }}" | ||
git checkout -b "$branch_name" | ||
# Commit the changes | ||
git add . | ||
git add psmodules/* | ||
git commit -m "Update Modules" | ||
- name: Push changes to dynamic feature branch | ||
|