-
Notifications
You must be signed in to change notification settings - Fork 50
51 lines (49 loc) · 1.46 KB
/
client-release-issue.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
name: Create client release ticket
on:
workflow_dispatch:
inputs:
from:
description: "Previous client version"
required: true
to:
description: "Next client version"
required: true
jobs:
setup-scripts:
runs-on: bare-metal
steps:
- uses: actions/[email protected]
- name: Upload tools
uses: actions/upload-artifact@v4
with:
name: original-tools
path: tools
create_client_ticket:
needs: ["setup-scripts"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Download Original Tools
uses: actions/download-artifact@v4
with:
name: original-tools
path: original-tools
- name: Generate client release issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: original-tools
run: |
npm i
npm run --silent print-client-release-issue -- --from ${{ github.event.inputs.from }} --to ${{ github.event.inputs.to }} | tee ../client-release-issue.md
- name: Create version bump issue
uses: peter-evans/create-issue-from-file@v3
with:
title: client ${{ github.event.inputs.to }} release
content-filepath: ./client-release-issue.md
labels: |
automated issue