chore: Introduce release notes formatting + preview release action (#7247)

### What
- Add changelog formatting file to automate pull request categorization in release notes*
- Add action to trigger preview releases
- Remove unused staging deployment action

**Add changelog formatting file to automate pull request categorization in release notes**

In order for this work, we need to be more strict about our labels usage. More specifically, we need to add one of the four different labels noted in the `release.yml` file. The labels should be self-explanatory. If your PR introduces both features and bugs, you should choose the label based on importance of the changes.
This commit is contained in:
Oli Juhl
2024-05-06 14:59:37 +02:00
committed by GitHub
parent 36eff7f10a
commit 16528c57b0
3 changed files with 35 additions and 23 deletions

65
.github/workflows/trigger-release.yml vendored Normal file
View File

@@ -0,0 +1,65 @@
name: Trigger Release and Publish
on:
workflow_dispatch:
inputs:
version:
type: choice
default: 'preview'
description: What tag do you want to release?
required: true
options:
- preview
- next
- snapshot
- canary
branches:
- develop
paths-ignore:
- "docs/**"
- "www/**"
- ".github/**"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Trigger Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Creating .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Configure npm node prepend
run: npm config set scripts-prepend-node-path auto
- name: Install Dependencies
run: yarn
- name: Build all packages
run: yarn build
- name: Version packages
run: yarn changeset version --snapshot ${{ github.event.inputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Dependencies
run: yarn install --no-immutable
- name: Publish packages under next tag
run: yarn changeset publish --no-git-tags --snapshot --tag ${{ github.event.inputs.version }}