Skip to content

Bump github.com/ray-project/kuberay/ray-operator from 1.5.0 to 1.5.1 #130

Bump github.com/ray-project/kuberay/ray-operator from 1.5.0 to 1.5.1

Bump github.com/ray-project/kuberay/ray-operator from 1.5.0 to 1.5.1 #130

# This workflow synchronizes dependency versions for Dependabot pull requests
name: Dependabot Version Sync
on:
pull_request_target:
branches: [ main ]
jobs:
run-sync-dependabot:
if: ${{ contains(github.event.pull_request.labels.*.name, 'ok-to-test') && github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
# Permission required to edit a PR
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.head_ref}}
- name: Set git user from last commit
run: |
git config user.name "$(git log -1 --pretty=%an)"
git config user.email "$(git log -1 --pretty=%ae)"
- name: Sync controller-tools version
if: ${{ contains(github.event.pull_request.title, 'sigs.k8s.io/controller-tools') }}
run: |
make manifests embeded-manifest
if ! git diff --exit-code; then
git add .
git commit -m "Sync controller-tools version"
git push
else
echo "No changes to commit"
fi