From 2c5cf92dbf7a0366b3baa96cf3eadde565bf8017 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Thu, 12 Oct 2023 22:57:33 +0200 Subject: [PATCH] fix undefined variable + add action to update PR description --- .github/workflows/pr_analysis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/pr_analysis.yml b/.github/workflows/pr_analysis.yml index 02e8436796..fae072d432 100644 --- a/.github/workflows/pr_analysis.yml +++ b/.github/workflows/pr_analysis.yml @@ -68,6 +68,7 @@ jobs: export EESSI_OS_TYPE=linux env | grep ^EESSI | sort source configure_easybuild + EB_MISSING_OUT=eb_missing.out eb --missing --easystack ${{matrix.EASYSTACK_FILE}} > ${EB_MISSING_OUT} grep '.* out of .* required modules missing:' ${EB_MISSING_OUT} exit_code=$? @@ -82,3 +83,10 @@ jobs: echo "no modules missing" fi + - name: Update PR description + uses: nefrob/pr-description@eb00e54af678cf0d50a5b8fdd54b557c9cd8ddc5 + with: + content: "Hello there!" + regex: "matchuntilthenend.*" + regexFlags: i + token: ${{ secrets.GITHUB_TOKEN }}