mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 07:05:51 -06:00
17 lines
369 B
YAML
17 lines
369 B
YAML
name: On release published
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
changelog:
|
|
name: Update changelog
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: main
|
|
- uses: rhysd/changelog-from-release/action@v3
|
|
with:
|
|
file: /docs/updates.md
|
|
github_token: ${{ secrets.GITHUB_TOKEN }} |