forked from line/centraldogma
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (59 loc) · 2.14 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Update Armeria version
on:
workflow_dispatch:
inputs:
armeria_version:
description: 'New Armeria version'
required: true
type: string
jobs:
wait-for-armeria-artifacts:
runs-on: ubuntu-latest
strategy:
matrix:
artifact:
- armeria-bom
- armeria
- armeria-grpc
- armeria-prometheus1
- armeria-saml
- armeria-thrift
- armeria-xds
steps:
- uses: actions/checkout@v3
- name: Wait for Armeria artifacts to be available
uses: nev7n/wait_for_response@v1
with:
url: "https://repo.maven.apache.org/maven2/com/linecorp/armeria/${{ matrix.artifact }}/${{ github.event.inputs.armeria_version }}/${{ matrix.artifact }}-${{ github.event.inputs.armeria_version }}.${{ matrix.artifact == 'armeria-bom' && 'bom' || 'jar' }}"
responseCode: 200
timeout: 18000000 # Timeout before giving up in milliseconds. 5 hours
interval: 60000 # 1 minute
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@v6
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:
token: ${{ secrets.GH_ACCESS_TOKEN }}
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