Skip to content

Rpm CI Update

Rpm CI Update #580

Workflow file for this run

# WARNING: DO NOT EDIT!
#
# This file was generated by plugin_template, and is managed by it. Please use
# './plugin-template --github pulp_rpm' to update this file.
#
# For more info visit https://github.com/pulp/plugin_template
---
name: "Rpm CI Update"
on:
schedule:
# * is a special character in YAML so you have to quote this string
# runs at 23:30 UTC every Sunday
- cron: '30 23 * * 0'
workflow_dispatch:
jobs:
update:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
steps:
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
repository: "pulp/plugin_template"
path: "plugin_template"
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
- name: "Install python dependencies"
run: |
echo ::group::PYDEPS
pip install gitpython packaging -r plugin_template/requirements.txt
echo ::endgroup::
- name: "Configure Git with pulpbot name and email"
run: |
git config --global user.name 'pulpbot'
git config --global user.email 'pulp-infra@redhat.com'
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "main"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch main"
branch: "update-ci/main"
base: "main"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.27"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.27"
branch: "update-ci/3.27"
base: "3.27"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.18"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.18"
branch: "update-ci/3.18"
base: "3.18"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.19"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.19"
branch: "update-ci/3.19"
base: "3.19"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.22"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.22"
branch: "update-ci/3.22"
base: "3.22"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.23"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.23"
branch: "update-ci/3.23"
base: "3.23"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.25"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.25"
branch: "update-ci/3.25"
base: "3.25"
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_rpm"
ref: "3.26"
- name: "Run update"
working-directory: "pulp_rpm"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_rpm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 3.26"
branch: "update-ci/3.26"
base: "3.26"
delete-branch: true
...