From e3dd707d2a29939c6b00144f76ad5670b3b972c3 Mon Sep 17 00:00:00 2001 From: mitchell Date: Thu, 7 Dec 2023 14:53:24 -0500 Subject: [PATCH] Restore preprocess step for propagate-pr action. --- .github/workflows/propagate.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/propagate.yml b/.github/workflows/propagate.yml index 9b80fef2c4..2ba49e6624 100644 --- a/.github/workflows/propagate.yml +++ b/.github/workflows/propagate.yml @@ -14,6 +14,7 @@ jobs: name: Propagate to affected version branches runs-on: ubuntu-20.04 env: + ACTIVESTATE_CI: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} JIRA_USERNAME: ${{ secrets.JIRA_EMAIL }} JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} @@ -35,6 +36,10 @@ jobs: with: go-version: '1.20.x' + - # === Install State Tool === + name: Install State Tool + uses: ActiveState/setup-state-tool@v1 + - # === Setup === name: Setup shell: bash @@ -43,6 +48,11 @@ jobs: git config user.name "AS-builds" git config user.email "nathanr+asbuilds@activestate.com" + - # === Preprocess === + name: Preprocess + shell: bash + run: state run preprocess -v + - # === Propagate PR === name: Propagate PR id: propagate_pr