Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
forked fromknik0/faac

Rename tags to a better name#47

Rename tags to a better name

Rename tags to a better name #47

Workflow file for this run

name:Rename tags to a better name
on:
push:
branches:
-'lfs/action'
schedule:
-cron:"0 1,13 * * *"
workflow_dispatch:
jobs:
retag:
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v4
with:
ref:master
fetch-depth:0
token:${{ secrets.GH_PAT }}
-name:Rename tags
run:|
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git fetch --tags https://github.com/knik0/faac
for bad_name in $(git tag | grep ^faac-); do
good_name=v${bad_name#faac-}
if ! git tag | grep -q $good_name; then
git tag $good_name $bad_name
fi
done
git push --tags

[8]ページ先頭

©2009-2025 Movatter.jp