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 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