-
Notifications
You must be signed in to change notification settings - Fork 5
38 lines (32 loc) · 1.27 KB
/
update-ns-api-server.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
name: Update ns-api-server package
# **What it does**: Every nigth, at midnight checks if a new version of ns-api-server is available.
# **Why we have it**: To avoid manually updating the package.
# **Who does it impact**: packages/ns-api-server/Makefile and the PKG_VERSION value
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
update-package:
name: Update ns-api-server package
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Update apt
run: sudo apt update
- name: Install deps
run: sudo apt-get install -y curl jq git
- name: Check if new API tag is different
run: |
NEW_TAG=$(curl https://api.github.com/repos/NethServer/nethsecurity-api/tags | jq -r .[0].name)
sed -i "s/PKG_VERSION:=.*/PKG_VERSION:=$NEW_TAG/g" packages/ns-api-server/Makefile
- name: Commit and create PR
uses: peter-evans/create-pull-request@v5
with:
title: 'build(deps): Update ns-api-server package (automated)'
branch: 'build-update-ns-api-server-package-automated'
commit-message: 'build(deps): ns-api-server package: update ns-api-server package (automated)'
base: main