From afe9208bf3ad1f00f6647ed52e83a79d57dcfaa2 Mon Sep 17 00:00:00 2001 From: tyler Date: Wed, 6 Dec 2023 20:19:05 +0000 Subject: [PATCH 1/2] Fix typo when setting env var --- .github/workflows/validate-deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-deployment.yml b/.github/workflows/validate-deployment.yml index ebd8e168..31ada219 100644 --- a/.github/workflows/validate-deployment.yml +++ b/.github/workflows/validate-deployment.yml @@ -45,7 +45,7 @@ jobs: - name: Count commits in candidate ref that are not in protected ref id: all-cherries run: | - $CHERRY_FILE=$(mktemp -t cherries.XXXXX) + CHERRY_FILE=$(mktemp -t cherries.XXXXX) git cherry -v "$PROTECTED_REF" "$DEPLOYMENT_REF" > $CHERRY_FILE echo "count=$(cat $CHERRY_FILE | wc -l)" >> $GITHUB_OUTPUT echo "file=$CHERRY_FILE" >> $GITHUB_OUTPUT From 5e0efc7c3708bb75c9c1cef1b91f279a1be3929a Mon Sep 17 00:00:00 2001 From: tyler Date: Wed, 6 Dec 2023 20:32:10 +0000 Subject: [PATCH 2/2] Remove testing trigger --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1e16e67..d22837fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,6 @@ name: Continuous Integration on: pull_request_target: {} - pull_request: {} # TESTING ONLY!!! permissions: contents: read