Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
changelog:
exclude:
authors:
- github-actions
categories:
- title: Features
labels:
- "type: feature"
- title: Bugs
labels:
- "type: bug"
- title: Documentation
labels:
- "type: docs"
- title: Chores
labels:
- "type: chore"
- title: Other Changes
labels:
- "*"
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
name: Staging Release and Publish
name: Trigger Release and Publish

on:
# TODO: Enabling manual workflow triggering while in pre-release mode. Remove when 1.8 is released
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:
Expand All @@ -15,7 +25,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Staging Release
name: Trigger Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand Down Expand Up @@ -44,12 +54,12 @@ jobs:
run: yarn build

- name: Version packages
run: yarn version:next
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 release:next
run: yarn changeset publish --no-git-tags --snapshot --tag ${{ github.event.inputs.version }}
18 changes: 0 additions & 18 deletions .github/workflows/trigger-staging-release.yml

This file was deleted.

Loading