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

Bump globals from 16.4.0 to 16.5.0#340

Bump globals from 16.4.0 to 16.5.0

Bump globals from 16.4.0 to 16.5.0 #340

Workflow file for this run

name:Test the changelog action
permissions:
contents:read
on:[push]
jobs:
test:
runs-on:ubuntu-latest
steps:
# To use this repository's private action, you must check out the repository
-name:Checkout
uses:actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8# was: actions/checkout@v4
-name:Generate changelog
id:changelog
# refme: ignore
uses:metcalfc/changelog-generator@main
with:
myToken:${{ secrets.GITHUB_TOKEN }}
head-ref:'v0.0.2'
base-ref:'v0.0.1'
-name:Reverse the generated changelog
id:changelog-rev
# refme: ignore
uses:metcalfc/changelog-generator@main
with:
myToken:${{ secrets.GITHUB_TOKEN }}
head-ref:'v0.0.2'
base-ref:'v0.0.1'
reverse:'true'
-name:Explicitly do not reverse the generated changelog
id:changelog-notrev
# refme: ignore
uses:metcalfc/changelog-generator@main
with:
myToken:${{ secrets.GITHUB_TOKEN }}
head-ref:'v0.0.2'
base-ref:'v0.0.1'
reverse:'false'
-name:Get the changelog
run:|
cat << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
-name:Modify the changelog
id:modified
run:|
set -o noglob
log=$(cat << "EOF" | grep -v Bumping | tac
${{ steps.changelog.outputs.changelog }}
EOF
)
log="${log//'%'/'%25'}"
log="${log//$'\n'/'%0A'}"
log="${log//$'\r'/'%0D'}"
echo "modified=$log" >> $GITHUB_OUTPUT
-name:Print the modified changelog
run:|
cat << "EOF"
${{ steps.modified.outputs.modified }}
EOF
-name:Generate changelog from release
id:release
# refme: ignore
uses:metcalfc/changelog-generator@main
with:
myToken:${{ secrets.GITHUB_TOKEN }}
-name:Get the changelog
run:|
cat << "EOF"
${{ steps.release.outputs.changelog }}
EOF

[8]ページ先頭

©2009-2025 Movatter.jp