File tree Expand file tree Collapse file tree
scripts/flaky-test-remediation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ python .github/scripts/flaky-test-remediation/run-local.py --draft # opens a
5353```
5454
5555Requires:
56+
5657- ` git ` remotes ` origin ` (your fork) and ` upstream `
5758 (` open-telemetry/opentelemetry-java-instrumentation ` )
5859- ` gh ` authenticated for the upstream repo
Original file line number Diff line number Diff line change @@ -212,15 +212,9 @@ jobs:
212212 if : steps.review-loop.outputs.processed_count != '0'
213213 env :
214214 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
215+ working-directory : progress
215216 run : |
216- set -euo pipefail
217- cd progress
218-
219- git config user.name otelbot
220- git config user.email 197425009+otelbot@users.noreply.github.com
221-
222217 cat "$PROCESSED_MODULES" >> reviewed.txt
223-
224218 git add reviewed.txt
225219 git commit -m "Mark $(wc -l < "$PROCESSED_MODULES" | tr -d ' ') module(s) as reviewed"
226220 git push origin HEAD:otelbot/code-review-progress
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Flaky Test Remediation
22
33on :
44 schedule :
5- - cron : " 0 0 * * 3"
5+ - cron : " 0 0 * * 3" # weekly at 00:00 UTC on Wednesday
66 workflow_dispatch :
77
88permissions :
You can’t perform that action at this time.
0 commit comments