-
Notifications
You must be signed in to change notification settings - Fork 24
46 lines (43 loc) · 2.02 KB
/
update-pulp-packages.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
name: Update package after dependabot merge
on:
push:
paths:
- automation/requirements.txt
env:
GIT_AUTHOR_NAME: Foreman Packaging Automation
GIT_AUTHOR_EMAIL: [email protected]
PACKAGE_TO_UPDATE: requirements.txt
jobs:
bump-package:
name: "Bump packages after dependabot merge"
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.head_ref == 'rpm/develop'
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get install -y --no-install-recommends python3-rpm rpm git-annex python3-semver
sudo curl --create-dirs -o /usr/local/bin/spectool https://pagure.io/rpmdevtools/raw/26a8abc746fba9c0b32eb899b96c92841a37855a/f/spectool.in
sudo curl --create-dirs -o /usr/local/bin/rpmdev-bumpspec https://pagure.io/rpmdevtools/raw/6f387c1deaa5cbed770310e288abde04b17421dc/f/rpmdev-bumpspec
sudo curl --create-dirs -o /usr/local/bin/rpmdev-vercmp https://pagure.io/rpmdevtools/raw/79740e6f1881e399b0b4340a8090dd5adc91a4ea/f/rpmdev-vercmp
printf '#!/bin/bash\necho "$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>"' | sudo tee /usr/local/bin/rpmdev-packager
sudo chmod +x /usr/local/bin/*
- name: Sort Updated Libs
if: github.event_name == 'push' && github.head_ref == 'rpm/develop'
run: git diff --unified=0 ${{github.event.before}} ${{github.sha}} automation/requirements.txt | grep -Po '(?<=^\+)(?!\+\+).*' > $PACKAGE_TO_UPDATE
- name: Check if package can be updated
if: github.event_name == 'push' && github.head_ref == 'rpm/develop'
run: ./update_packages.sh
output:
- name: Open a PR
if: github.event_name == 'push' && github.head_ref == 'rpm/develop'
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Update ${{ pkg }}" to ${{ NEW_VERSION }}""
branch: "bump_rpm/${{ pkg }}"
title: "Update ${{ pkg }}to ${{ NEW_VERSION }}"
body: ''
delete-branch: true