mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
* Revert "chore: collect key locker logs (#2945)" This reverts commit935be1c019. * Revert "chore: fix signing algorithms (#2944)" This reverts commit0bcac5e387. * Revert "chore: add Signing Manager health checks before certificate sign (#2943)" This reverts commit184d4008cf.
26 lines
No EOL
667 B
YAML
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" |