From 602f9df387e2bfb2eb33a511151c45dd01790992 Mon Sep 17 00:00:00 2001 From: Lykoi18 Date: Thu, 19 Oct 2023 18:38:37 +0400 Subject: [PATCH] Test "Update version" action --- .github/workflows/update_version.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_version.yml b/.github/workflows/update_version.yml index ebc98879dedc..d614c724008f 100644 --- a/.github/workflows/update_version.yml +++ b/.github/workflows/update_version.yml @@ -24,7 +24,7 @@ jobs: - name: Get sources uses: actions/checkout@v4 with: - ref: ${{ inputs.branch_name }} + ref: 23_2 - name: Use Node.js uses: actions/setup-node@v3 @@ -35,17 +35,17 @@ jobs: run: npm install --no-audit --no-fund - name: Bump version - run: npm run all:update-version -- ${{ inputs.version }} + run: npm run all:update-version -- 23.2.1 - name: Commit changes and make PR shell: bash env: GITHUB_TOKEN: ${{ secrets.DX_ROBOT_PAT }} - branch_name: 'robot/update-version-${{ inputs.branch_name }}' + branch_name: 'robot/update-version-23_2_1' run: | git checkout -b $branch_name git add . -N git commit -a -m "Bump devextreme version" git push --set-upstream origin $branch_name --force - gh pr create --base ${{ inputs.branch_name }} --title "Bump devextreme version (${{ inputs.branch_name }})" --body "Bump devextreme version" --reviewer DevExpress/devextreme-devops + gh pr create --base 23_2 --title "Bump devextreme version (23.2.1)" --body "Bump devextreme version" --reviewer DevExpress/devextreme-devops