diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 7bbfbd5..79ad46e 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -117,11 +117,11 @@ jobs: echo "::endgroup::" - name: Get current job log URL - uses: Tiryoh/gha-jobid-action@v0 + uses: Tiryoh/gha-jobid-action@v1 id: get-job-id with: github_token: ${{ secrets.GITHUB_TOKEN }} - job_name: ${{ github.job }} + job_name: Tests - name: Generate Run Tag shell: bash @@ -140,9 +140,11 @@ jobs: docker run --rm \ -e GITHUB_WORKSPACE=true \ -e GITHUB_OUTPUT=/fatmouse/output \ + -e GITHUB_STEP_SUMMARY=/fatmouse/step_summary \ -w /fatmouse \ -v $PWD/fatmouse:/fatmouse \ -v $GITHUB_OUTPUT:/fatmouse/output \ + -v $GITHUB_STEP_SUMMARY:/fatmouse/step_summary \ -v ~/.scalr-labs:/etc/scalr-labs \ fatmouse/python-builder:base python -u clickfile.py te up \ --branch ${{ env.API_BRANCH }} \ diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 62897af..3058c37 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -42,11 +42,11 @@ jobs: echo ":taco: Pull request: https://github.com/Scalr/${{ inputs.repo }}/pull/${{ inputs.pr_id }} " >> $GITHUB_STEP_SUMMARY - name: Get Current Job Log URL - uses: Tiryoh/gha-jobid-action@v0 + uses: Tiryoh/gha-jobid-action@v1 id: get-job-id with: github_token: ${{ secrets.GITHUB_TOKEN }} - job_name: ${{ github.job }} + job_name: Tests - name: Set Pending Status uses: actions/github-script@v7 @@ -138,9 +138,11 @@ jobs: docker run --rm \ -e GITHUB_WORKSPACE=true \ -e GITHUB_OUTPUT=/fatmouse/output \ + -e GITHUB_STEP_SUMMARY=/fatmouse/step_summary \ -w /fatmouse \ -v $PWD/fatmouse:/fatmouse \ -v $GITHUB_OUTPUT:/fatmouse/output \ + -v $GITHUB_STEP_SUMMARY:/fatmouse/step_summary \ -v ~/.scalr-labs:/etc/scalr-labs \ fatmouse/python-builder:base python -u clickfile.py te up \ --branch ${{ inputs.pr_branch }} \