Skip to content

Eco-GoInfra Module Bump #20

Eco-GoInfra Module Bump

Eco-GoInfra Module Bump #20

name: 'Eco-GoInfra Module Bump'
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
jobs:
main:
name: Eco-goinfra module bump
permissions:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PR
runs-on: ubuntu-latest
env:
SHELL: /bin/bash
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.23.2
- name: Run sync script
run: make sync-eco-goinfra
- name: Create PR
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_KEY }}
with:
commit-message: "deps: bump github.com/openshift-kni/eco-goinfra"
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
title: Bump eco-goinfra dependency
branch: eco-goinfra-bump
delete-branch: true