File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,14 +24,18 @@ jobs:
2424 run : |
2525 if [ -z "$GITHUB_HEAD_REF" ]; then
2626 # push
27- echo "branch=$GITHUB_REF_NAME" >> "$GITHUB_OUTPUT"
28- echo "pr=$GITHUB_RUN_ID" >> "$GITHUB_OUTPUT"
29- echo "repo=${{ github.repository }}" >> "$GITHUB_OUTPUT"
27+ {
28+ echo "branch=$GITHUB_REF_NAME"
29+ echo "pr=$GITHUB_RUN_ID"
30+ echo "repo=${{ github.repository }}"
31+ } >> "$GITHUB_OUTPUT"
3032 else
3133 # pull request
32- echo "branch=$GITHUB_HEAD_REF" >> "$GITHUB_OUTPUT"
33- echo "pr=${{ github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
34- echo "repo=${{ github.event.pull_request.head.repo.full_name }}" >> "$GITHUB_OUTPUT"
34+ {
35+ echo "branch=$GITHUB_HEAD_REF"
36+ echo "pr=${{ github.event.pull_request.number }}"
37+ echo "repo=${{ github.event.pull_request.head.repo.full_name }}"
38+ } >> "$GITHUB_OUTPUT"
3539 fi
3640 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3741 with :
4953 env :
5054 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5155 run : |
52- mkdir -p $HOME/.gradle
53- echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > $HOME/.gradle/gradle.properties
54- scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} $GITHUB_RUN_NUMBER ${{ steps.get-vars.outputs.pr }}
56+ mkdir -p " $HOME/.gradle"
57+ echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > " $HOME/.gradle/gradle.properties"
58+ scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} " $GITHUB_RUN_NUMBER" ${{ steps.get-vars.outputs.pr }}
Original file line number Diff line number Diff line change 2626 Please take a look again and update the issue with new details,
2727 otherwise the issue will be automatically closed in 2 weeks. Thank you!
2828 exempt-all-pr-milestones : true
29+ labels-to-remove-when-unstale : ' needs info'
You can’t perform that action at this time.
0 commit comments