mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-03-12 19:07:28 -04:00
ci(workflows): configure git user for release workflows (#3311)
This commit is contained in:
@@ -46,6 +46,12 @@ jobs:
|
||||
echo "DRY RUN: Would create tag ${{ steps.tag.outputs.internal_tag }} pointing to $(git rev-parse HEAD)"
|
||||
git log -5 --oneline
|
||||
|
||||
- name: Configure Git User
|
||||
if: ${{ inputs.dry_run != 'true' }}
|
||||
run: |
|
||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git config --global user.name "github-actions[bot]"
|
||||
|
||||
- name: Create and Push Tag
|
||||
if: ${{ inputs.dry_run != 'true' }}
|
||||
run: |
|
||||
|
||||
6
.github/workflows/promote-release.yml
vendored
6
.github/workflows/promote-release.yml
vendored
@@ -171,6 +171,12 @@ jobs:
|
||||
echo "Current stage: ${{ steps.current.outputs.current_stage }} -> Target: ${{ steps.decide.outputs.target_stage }}"
|
||||
git log -1 --oneline ${{ steps.commit.outputs.commit_sha }}
|
||||
|
||||
- name: Configure Git User
|
||||
if: ${{ inputs.dry_run != 'true' }}
|
||||
run: |
|
||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git config --global user.name "github-actions[bot]"
|
||||
|
||||
- name: Create & Push Tag
|
||||
if: ${{ inputs.dry_run != 'true' }}
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user