From dfeaeb1144298eec9ae362f66f6d18afae6e71a4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:50:57 +0000 Subject: [PATCH 1/2] Initial plan From 505072bc9cb88f5112a84c6479ecd9acae39043d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:52:29 +0000 Subject: [PATCH 2/2] fix: avoid non-fast-forward failures in scheduled log push Agent-Logs-Url: https://github.com/adobe/aio-e2e-tests/sessions/24a38d43-9556-4d93-b794-a1ff520283fe Co-authored-by: shazron <36107+shazron@users.noreply.github.com> --- .github/workflows/app-test.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/app-test.yml b/.github/workflows/app-test.yml index 34d1ca8f..c721fea5 100644 --- a/.github/workflows/app-test.yml +++ b/.github/workflows/app-test.yml @@ -5,6 +5,10 @@ on: schedule: # run daily at midnight - cron: '0 0 * * *' + +concurrency: + group: aio-e2e-tests-app-test-log + cancel-in-progress: false jobs: build: @@ -48,12 +52,16 @@ jobs: - name: Log to File if: ${{ always() && (github.event_name == 'schedule') }} run: | + set -euo pipefail git config user.name adobe-bot git config user.email grp-opensourceoffice@adobe.com + git fetch origin master + git checkout master + git pull --rebase origin master echo "- $(date) Node ${{ matrix.node-version }} ${{ job.status == 'success' && 'success' || job.status }}" >> logs/run.md git add logs/run.md - git commit -m "generated" - git push + git commit -m "generated" || echo "Nothing to commit" + git push origin HEAD:master - name: Upload Coverage if: ${{ success() && (github.event_name == 'pull_request' || github.event_name == 'push') }} uses: codecov/codecov-action@v3.1.1