Skip to content

XML headers normalized #96

XML headers normalized

XML headers normalized #96

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2011-2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: up
'on':
push:
branches:
- master
tags:
- '*'
concurrency:
group: up-${{ github.ref }}
cancel-in-progress: true
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/<version>[^<]+/<version>${latest}/g" README.md
- uses: peter-evans/create-pull-request@v6
with:
branch: version-up
commit-message: 'new version in README'
delete-branch: true
title: 'New version in README'
assignees: yegor256
base: master