-
Notifications
You must be signed in to change notification settings - Fork 118
42 lines (37 loc) · 1.27 KB
/
update-armeria-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
name: Update Armeria version
on:
workflow_dispatch:
inputs:
armeria_version:
description: 'New Armeria version'
required: true
type: string
jobs:
update-armeria-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Armeria version to ${{ inputs.armeria_version }}
run: |
sed -i "s/armeria = \".*\"/armeria = \"${{ inputs.armeria_version }}\"/" dependencies.toml
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSWORD }}
git-user-signingkey: true
git-commit-gpgsign: true
- name: Create pull request
uses: peter-evans/create-pull-request@v4
with:
title: Update Armeria version to ${{ inputs.armeria_version }}
body : ''
commit-message: Update Armeria version to ${{ inputs.armeria_version }}
author: Meri Kim <[email protected]>
branch: update-armeria-version
committer: Meri Kim <[email protected]>
delete-branch: true
label: dependencies
add-paths: |
dependencies.toml