mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -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 }}
|