Skip to content

Bump repositories

Bump repositories #330

Workflow file for this run

name: Bump repositories
on:
schedule:
- cron: 0 20 * * *
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bump cos 🔧
run: |
docker run --name=yq -v "${PWD}":/workdir mikefarah/yq
docker cp yq:/usr/bin/yq ./
export YQ=$PWD/yq
sudo -E bash ./.github/bump_repositories.sh
rm -rf yq
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.PAT_TOKEN }}
push-to-fork: ci-forks/provider-c3os
commit-message: ":arrow_up: Update repositories"
signoff: true
title: "Repositories bump"
body: "Bump of luet repositories"