Skip to content

Commit 16b1cbc

Browse files
committed
Final test
1 parent ef06a29 commit 16b1cbc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/actions/switch-context/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Switch context'
1+
name: 'Switch context and export all environment variables'
22
inputs:
33
context-name:
44
description: 'Context name to switch to'

.github/workflows/preview_release_notes.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
- name: Setup host
3030
uses: ./.github/actions/setup-ubuntu-host
3131
with:
32-
python-version: '${{ env.PYTHON_VERSION }}'
32+
python-version: ${{ env.PYTHON_VERSION }}
3333
- name: Generate Release Notes
3434
run: python -m scripts.release.release_notes -s $INITIAL_COMMIT_SHA -v $INITIAL_VERSION -o release_notes_tmp.md
3535
env:
3636
# We can not use environments set via GitHub UI because they will
3737
# not be available in the pull requests running from forks.
38-
INITIAL_COMMIT_SHA: '${{ env.INITIAL_COMMIT_SHA }}'
39-
INITIAL_VERSION: '${{ env.INITIAL_VERSION }}'
38+
INITIAL_COMMIT_SHA: ${{ env.INITIAL_COMMIT_SHA }}
39+
INITIAL_VERSION: ${{ env.INITIAL_VERSION }}
4040
- name: Add disclaimer to release notes preview
4141
run: |
4242
echo -e "_:warning: (this preview might not be accurate if the PR is not rebased on current master branch)_\n" > release_notes_preview.md

.github/workflows/require_changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup host
3131
uses: ./.github/actions/setup-ubuntu-host
3232
with:
33-
python-version: '${{ steps.switch_context.outputs.python-version }}'
33+
python-version: ${{ env.PYTHON_VERSION }}
3434
- name: Check if changelog entry file was added in this PR
3535
run: |
3636
set -o pipefail

0 commit comments

Comments
 (0)