Skip to content

Commit

Permalink
builder: Switch to different way of setting git identity.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlodandan authored Apr 20, 2024
1 parent 799c56f commit 670c97e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Recovery-Builder-PBRP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
run: |
mkdir android-recovery
cd android-recovery
git config --global user.name "Carlo Dandan"
git config --global user.email "jasminecarlo01@gmail.com"
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
repo init --depth=1 -u https://github.com/PitchBlackRecoveryProject/manifest_pb.git -b ${{ github.event.inputs.MANIFEST_BRANCH }}
- name: Repo Sync
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Recovery-Builder-TWRP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ jobs:
run: |
mkdir android-recovery
cd android-recovery
git config --global user.name "Carlo Dandan"
git config --global user.email "jasminecarlo01@gmail.com"
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
repo init --depth=1 -u ${{ steps.manifest.outputs.value }} -b ${{ github.event.inputs.MANIFEST_BRANCH }}
sed -i '/<remove-project name="platform\/external\/gflags" \/>/d' .repo/manifests/remove-minimal.xml
Expand Down

0 comments on commit 670c97e

Please sign in to comment.