-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/tooltip-delay
- Loading branch information
Showing
1,083 changed files
with
33,165 additions
and
32,499 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: "Release: create" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
required: true | ||
description: Version to release, without the v (e.g. 1.2.3) | ||
ref: | ||
default: main | ||
description: Ref to start the release from (e.g. main, sha) | ||
create_release: | ||
type: boolean | ||
default: true | ||
description: Create a release after merging the PR | ||
|
||
jobs: | ||
create_pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.inputs.ref }} | ||
|
||
- name: Sanitize version | ||
id: sanitize | ||
run: | | ||
echo version=$(echo ${{ github.event.inputs.version }} | sed 's/^v//') >> $GITHUB_OUTPUT | ||
- name: Update versions | ||
run: | | ||
echo ${{ steps.sanitize.outputs.version }} > version.txt | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
branch: release/${{ steps.sanitize.outputs.version }} | ||
commit-message: "chore: release v${{ steps.sanitize.outputs.version }}" | ||
committer: Github Action Deploy <[email protected]> | ||
author: Github Action Deploy <[email protected]> | ||
title: Release v${{ steps.sanitize.outputs.version }} | ||
labels: | | ||
release | ||
${{ github.event.inputs.create_release == true && 'create_release' || '' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: "Release: on merge" | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
tag_and_release: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release') | ||
steps: | ||
- name: Check PR Author | ||
id: check_author | ||
run: | | ||
if [[ "${{ github.event.pull_request.user.login }}" != "github-actions[bot]" ]]; then | ||
echo "PR author (${AUTHOR}) is not trusted. Exiting." | ||
exit 1 | ||
fi | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
|
||
- name: Get version from PR title | ||
id: extract_version | ||
run: | | ||
VERSION=$(echo "${{ github.event.pull_request.title }}" | sed -n 's/.*Release v\([0-9.]*\).*/\1/p') | ||
if [ -z "$VERSION" ]; then | ||
echo "No valid version found in PR title. Exiting." | ||
exit 1 | ||
fi | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Push new tag | ||
run: | | ||
git config --global user.name 'Github Action Deploy' | ||
git config --global user.email '[email protected]' | ||
git tag v${{ env.VERSION }} | ||
git push origin v${{ env.VERSION }} | ||
- uses: release-drafter/release-drafter@v5 | ||
if: contains(github.event.pull_request.labels.*.name, 'create_release') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag: v${{ env.VERSION }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.