mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Support node 20, drop node 16 * Update workflow versions * Update backendmeta * Use version file * Update packages * Yarn updates * Changelog * Fix glibc compatibility * Target es2021 Without this, CI tests fail * Drop unused metrics parameter * Revert "Drop unused metrics parameter" This reverts commit 4d874549bcec3dea0d6941215ac5c4f4707966ac. * Make a note about broken support --------- Co-authored-by: Andrew Ferrazzutti <andrewf@element.io>
20 lines
445 B
YAML
20 lines
445 B
YAML
name: Newsfile
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with: # Needed for comparison
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '3.9'
|
|
- run: pip install towncrier==21.9.0
|
|
- name: ":newspaper: Newsfile"
|
|
run: python3 -m towncrier.check --compare-with=origin/main
|