From dced246bb5c4c745b611588b4d1637b3ef709131 Mon Sep 17 00:00:00 2001 From: ohemorange Date: Fri, 24 Apr 2026 15:16:42 -0700 Subject: [PATCH 1/2] Delete comment since it's in the official docs Co-authored-by: Brad Warren --- .github/workflows/pr-test-suite.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pr-test-suite.yml b/.github/workflows/pr-test-suite.yml index 760638b82..0003a2d19 100644 --- a/.github/workflows/pr-test-suite.yml +++ b/.github/workflows/pr-test-suite.yml @@ -12,7 +12,6 @@ on: permissions: contents: read concurrency: - # https://stackoverflow.com/questions/74117321/if-condition-in-concurrency-in-gha group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true From f93a1d3b440045c394892168295128041f9f374e Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 24 Apr 2026 15:20:03 -0700 Subject: [PATCH 2/2] remove unused aws secret env vars --- .github/workflows/tox_steps.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/tox_steps.yml b/.github/workflows/tox_steps.yml index f9a3cfb1d..ec9232f5b 100644 --- a/.github/workflows/tox_steps.yml +++ b/.github/workflows/tox_steps.yml @@ -58,18 +58,8 @@ jobs: run: |- python3 tools/pip_install.py tox shell: bash - - name: Create test farm pem file - if: contains(inputs.TOXENV, 'test-farm') - env: - PEM_CONTENTS: "${{ secrets.AWS_TEST_FARM_PEM }}" - AWS_EC2_PEM_FILE: ${{ github.workspace }}/GHAKeyPair.pem - run: |- - echo "${PEM_CONTENTS}" >> $AWS_EC2_PEM_FILE - shell: bash - name: Run tox env: - AWS_ACCESS_KEY_ID: "${{ secrets.AWS_ACCESS_KEY_ID }}" - AWS_SECRET_ACCESS_KEY: "${{ secrets.AWS_SECRET_ACCESS_KEY }}" PIP_USE_PEP517: "${{ inputs.PIP_USE_PEP517 }}" TOXENV: "${{ inputs.TOXENV }}" run: |-