-
Notifications
You must be signed in to change notification settings - Fork 601
52 lines (43 loc) · 1.5 KB
/
update_version.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Update version in all workspaces
on:
workflow_dispatch:
inputs:
branch_name:
type: string
description: XX_X Branch name (23_2+)
required: true
version:
type: string
description: XX.X.X Set exact version
required: true
jobs:
update_version:
name: Update version and create PR
runs-on: ubuntu-latest
steps:
- name: Get sources
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch_name }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup git config
run: |
git config --global user.email "[email protected]"
git config --global user.name "DX Robot"
- name: Install packages in devextreme repo
run: npm install --no-audit --no-fund
- name: Bump version
run: npm run all:update-version -- ${{ inputs.version }}
- name: Commit changes and make PR
env:
GITHUB_TOKEN: ${{ secrets.DX_ROBOT_PAT }}
branch_name: 'robot/update-version-${{ inputs.version }}'
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.version }})" --body "Bump devextreme version" --reviewer DevExpress/devextreme-devops