-
Notifications
You must be signed in to change notification settings - Fork 453
44 lines (36 loc) · 976 Bytes
/
kubed-bump.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
name: Bump @kubed/*
on:
workflow_dispatch:
jobs:
kubed-bump:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install Yarn
run: npm install --global yarn
- name: Install dependencies
run: yarn install
- name: Bump @kubed/*
run: yarn run kubed:bump
- name: Update yarn.lock
run: yarn install
- name: 'Create Pull Request'
env:
COMMIT_MESSAGE: 'chore(bot): bump @kubed/*'
uses: peter-evans/create-pull-request@v6
with:
commit-message: ${{ env.COMMIT_MESSAGE }}
signoff: true
delete-branch: true
branch-suffix: timestamp
title: ${{ env.COMMIT_MESSAGE }}
body: |
```release-note
none
```
labels: approved