Skip to content

Merge pull request #274 from owtotwo/master #10

Merge pull request #274 from owtotwo/master

Merge pull request #274 from owtotwo/master #10

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2023-2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: up
'on':
push:
branches:
- master
tags:
- '*'
jobs:
up:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: |-
git fetch --tags --force && \
latest=$(git tag --sort=creatordate | tail -1) && \
sed -E -i "s/micromap = \"[^\"]+\"/micromap = \"${latest}\"/g" README.md
- uses: peter-evans/create-pull-request@v7
with:
branch: version-up
commit-message: 'new version in README'
delete-branch: true
title: 'New version in README'
assignees: yegor256
base: master