devops: fix GHA automation email (#35347)
This commit is contained in:
parent
4e0d5742c4
commit
bef2310cf6
|
@ -34,7 +34,7 @@ jobs:
|
|||
id: cherry-pick
|
||||
run: |
|
||||
git config --global user.name microsoft-playwright-automation[bot]
|
||||
git config --global user.email 4203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git config --global user.email 203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
for COMMIT_HASH in $(echo "${{ github.event.inputs.commit_hashes }}" | tr "," "\n"); do
|
||||
git cherry-pick --no-commit "$COMMIT_HASH"
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ jobs:
|
|||
BRANCH_NAME="roll-into-pw-${BROWSER}/${REVISION}"
|
||||
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_OUTPUT
|
||||
git config --global user.name microsoft-playwright-automation[bot]
|
||||
git config --global user.email 4203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git config --global user.email 203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git checkout -b "$BRANCH_NAME"
|
||||
git add .
|
||||
git commit -m "feat(${BROWSER}): roll to r${REVISION}"
|
||||
|
|
|
@ -28,7 +28,7 @@ jobs:
|
|||
BRANCH_NAME="roll-driver-nodejs/$(date +%Y-%b-%d)"
|
||||
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_OUTPUT
|
||||
git config --global user.name microsoft-playwright-automation[bot]
|
||||
git config --global user.email 4203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git config --global user.email 203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git checkout -b "$BRANCH_NAME"
|
||||
git add .
|
||||
git commit -m "chore(driver): roll driver to recent Node.js LTS version"
|
||||
|
|
|
@ -28,7 +28,7 @@ npm run build
|
|||
|
||||
# 2. Configure Git and clone the Trace Viewer repository
|
||||
git config --global user.name microsoft-playwright-automation[bot]
|
||||
git config --global user.email 4203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git config --global user.email 203992400+microsoft-playwright-automation[bot]@users.noreply.github.com
|
||||
git clone "https://x-access-token:${GH_SERVICE_ACCOUNT_TOKEN}@github.com/microsoft/trace.playwright.dev.git" trace.playwright.dev
|
||||
|
||||
# 3. Copy the built Trace Viewer to the repository
|
||||
|
|
Loading…
Reference in New Issue