Autoupdate #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autoupdate | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
defaults: | |
run: | |
shell: | |
bash -el {0} | |
jobs: | |
check_update: | |
name: Check if newer version exists | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Set up Conda env | |
uses: mamba-org/setup-micromamba@e820223f89c8720d6c740ca154a7adf32fcd278a | |
with: | |
environment-file: environment.yml | |
environment-name: check-env | |
- name: Find latest version | |
id: versions | |
run: | | |
pkgname="$(yq '.dependencies[0]' environment.yml | grep -Eio '[a-z0-9_-]+' | head -n 1)" | |
old_version=$(micromamba list -n check-env "$pkgname" --json | jq -r '.[0].version') | |
micromamba update -y -n check-env -a | |
new_version=$(micromamba list -n check-env "$pkgname" --json | jq -r '.[0].version') | |
if [[ "$new_version" != "$old_version" ]]; then | |
sed -i "s/$old_version/$new_version/g" environment.yml | |
echo "pkgname=$pkgname" >> "$GITHUB_OUTPUT" | |
echo "new-version=$new_version" >> "$GITHUB_OUTPUT" | |
fi | |
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 | |
if: steps.versions.outputs.pkgname | |
with: | |
commit-message: "Update ${{ steps.versions.outputs.pkgname }} to ${{ steps.versions.outputs.new-version }}" | |
title: "Update ${{ steps.versions.outputs.pkgname }} to ${{ steps.versions.outputs.new-version }}" | |
body: | | |
A new release of ${{ steps.versions.outputs.pkgname }} was detected on conda-forge. | |
This PR updates ${{ steps.versions.outputs.pkgname }} to version ${{ steps.versions.outputs.new-version }} and will push a tag on merge automatically. | |
branch: v${{ steps.versions.outputs.new-version }} | |
delete-branch: true |