Skip to content

Update package

Update package #1608

Workflow file for this run

name: Update package
on:
pull_request:
push:
branches: main
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: iterative/setup-cml@v3
- name: get latest dvc version
id: latest
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: echo "version=$(./latest.sh)" >> $GITHUB_OUTPUT
- name: try update
id: update
shell: bash
run: |
echo latest version ${{ steps.latest.outputs.version }}
./update.sh ${{ steps.latest.outputs.version }}
echo "changes=$(git diff | tr '\n' ' ')" >> $GITHUB_OUTPUT
- name: create PR
if: ${{ steps.update.outputs.changes != '' && github.event_name != 'pull_request'}}
id: create-pr
run: |
cml pr create \
--token="${{ secrets.GITHUB_TOKEN }}" \
--message="dvc ${{ steps.latest.outputs.version }}" \
--title="dvc ${{ steps.latest.outputs.version }}" .
env:
GITHUB_TOKEN: ${{ secrets.OLIVAW_PAT }}
- name: Merge the PR
if: ${{ steps.update.outputs.changes != '' && github.event_name != 'pull_request'}}
run: gh pr merge --squash --delete-branch --auto ${{ steps.create-pr.outputs.pull-request-url }}
env:
GITHUB_TOKEN: ${{ secrets.OLIVAW_PAT }}
- name: Send message to slack
if: failure()
uses: rtCamp/[email protected]
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_COLOR: ${{ job.status }}
SLACK_MESSAGE: 'Package update failed for ${{ github.repository }}'
SLACK_TITLE: CI Status
SLACK_USERNAME: dvc-pkg-update