From 528ba3844e3b3caf949bb1f3ceee3a9de5a663a0 Mon Sep 17 00:00:00 2001 From: nextcloud-android-bot Date: Thu, 21 Dec 2023 02:24:22 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/workfl?= =?UTF-8?q?ows/'=20with=20remote=20'config/workflows/'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nextcloud-android-bot --- .github/workflows/analysis.yml | 22 +++++++++++++--------- .github/workflows/stale.yml | 1 + 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index d08f4181a..e9994c370 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -24,14 +24,18 @@ jobs: run: | if [ -z "$GITHUB_HEAD_REF" ]; then # push - echo "branch=$GITHUB_REF_NAME" >> "$GITHUB_OUTPUT" - echo "pr=$GITHUB_RUN_ID" >> "$GITHUB_OUTPUT" - echo "repo=${{ github.repository }}" >> "$GITHUB_OUTPUT" + { + echo "branch=$GITHUB_REF_NAME" + echo "pr=$GITHUB_RUN_ID" + echo "repo=${{ github.repository }}" + } >> "$GITHUB_OUTPUT" else # pull request - echo "branch=$GITHUB_HEAD_REF" >> "$GITHUB_OUTPUT" - echo "pr=${{ github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" - echo "repo=${{ github.event.pull_request.head.repo.full_name }}" >> "$GITHUB_OUTPUT" + { + echo "branch=$GITHUB_HEAD_REF" + echo "pr=${{ github.event.pull_request.number }}" + echo "repo=${{ github.event.pull_request.head.repo.full_name }}" + } >> "$GITHUB_OUTPUT" fi - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: @@ -49,6 +53,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - mkdir -p $HOME/.gradle - echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > $HOME/.gradle/gradle.properties - scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} $GITHUB_RUN_NUMBER ${{ steps.get-vars.outputs.pr }} + mkdir -p "$HOME/.gradle" + echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties" + scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} "$GITHUB_RUN_NUMBER" ${{ steps.get-vars.outputs.pr }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 776b467f9..12891d918 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -26,3 +26,4 @@ jobs: Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you! exempt-all-pr-milestones: true + labels-to-remove-when-unstale: 'needs info'