From 77cdabe6f161c4433df46f72d8f4af672c8f5d1e Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Fri, 14 Jun 2024 10:28:01 +0100 Subject: [PATCH] fix(call-for-testing): use `` rather than backticks --- call-for-testing/action.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/call-for-testing/action.yaml b/call-for-testing/action.yaml index 5010ea1..10965dc 100644 --- a/call-for-testing/action.yaml +++ b/call-for-testing/action.yaml @@ -40,16 +40,16 @@ inputs: 1. Stop the application if it was already running 2. Upgrade to this version by running - ```shell + snap refresh {{ env.snap_name }} --channel {{ env.channel }} - ``` + 3. Start the app and test it out. 4. Finally, add a comment below explaining whether this app is working, and **include the output of the following command**. - ```shell + snap version; lscpu | grep Architecture; snap info {{ env.snap_name }} | grep installed - ``` + required: false outputs: @@ -129,12 +129,14 @@ runs: - name: Prepare the call for testing template shell: bash + env: + testing_instructions: ${{ inputs.testing-instructions }} run: | # Fetch the template from the repo wget -qO template-raw.md "https://raw.githubusercontent.com/${{ inputs.ci-repo }}/main/call-for-testing/template.md" # Substitute in the testing instructions - awk -v r="${{ inputs.testing-instructions }}" '{gsub(/TESTING_INSTRUCTIONS/,r)}1' template-raw.md > template.md + awk -v r="${testing_instructions}" '{gsub(/TESTING_INSTRUCTIONS/,r)}1' template-raw.md > template.md - name: Create call for testing issue uses: JasonEtco/create-an-issue@v2