standardnotes-app/actions/release-notes/action.yml
Karol Sójko 00f951451f
chore: revert digicert changes (#2946)
* Revert "chore: collect key locker logs (#2945)"

This reverts commit 935be1c019.

* Revert "chore: fix signing algorithms (#2944)"

This reverts commit 0bcac5e387.

* Revert "chore: add Signing Manager health checks before certificate sign (#2943)"

This reverts commit 184d4008cf.
2025-10-16 15:39:51 +02:00

26 lines
No EOL
667 B
YAML

name: Release Notes
description: Runs scripts/changelog-parser for package
inputs:
package:
description: Package name
required: true
outputs:
result:
description: Outputs release notes
value: ${{ steps.set.outputs.result }}
runs:
using: composite
steps:
- id: set
shell: bash
env:
text: ${{ inputs.text }}
run: |
RELEASE_NOTES="$(node scripts/changelog-parser.js ${{ inputs.package }})"
RELEASE_NOTES="${RELEASE_NOTES//'%'/'%25'}"
RELEASE_NOTES="${RELEASE_NOTES//$'\n'/'%0A'}"
RELEASE_NOTES="${RELEASE_NOTES//$'\r'/'%0D'}"
echo "::set-output name=result::$RELEASE_NOTES"