-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2935 from ActiveState/mitchell/dx-2354-2
Restore preprocess step for propagate-pr action.
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "[email protected]" | ||
- # === Preprocess === | ||
name: Preprocess | ||
shell: bash | ||
run: state run preprocess -v | ||
|
||
- # === Propagate PR === | ||
name: Propagate PR | ||
id: propagate_pr | ||
|