-
-
Notifications
You must be signed in to change notification settings - Fork 943
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into renovate/major-eslint
- Loading branch information
Showing
815 changed files
with
105,329 additions
and
81,888 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Check Release PR | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'CHANGELOG.md' | ||
|
||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
|
||
jobs: | ||
check_release_pr: | ||
name: Check Release PR | ||
if: startsWith(github.head_ref, 'chore/release/') | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: Checkout faker | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
path: faker | ||
|
||
- name: Checkout playground | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
repository: faker-js/playground | ||
path: playground | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | ||
with: | ||
package_json_file: faker/package.json | ||
|
||
- name: Set node version to 22 | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | ||
with: | ||
node-version: 22 | ||
cache: 'pnpm' | ||
cache-dependency-path: | | ||
faker/pnpm-lock.yaml | ||
playground/pnpm-lock.yaml | ||
- name: Install deps - faker | ||
run: | | ||
cd faker | ||
pnpm install | ||
env: | ||
CYPRESS_INSTALL_BINARY: 0 | ||
|
||
- name: Build - faker | ||
run: | | ||
cd faker | ||
pnpm run build | ||
- name: Install deps - playground | ||
run: | | ||
cd playground | ||
sed -i 's/overrides-for-release/overrides/' package.json | ||
pnpm install --no-frozen-lockfile | ||
- name: Build - playground | ||
run: | | ||
cd playground | ||
pnpm run build | ||
- name: Test - playground | ||
run: | | ||
cd playground | ||
pnpm run test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Draft Release | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- closed | ||
paths: | ||
- 'CHANGELOG.md' | ||
|
||
permissions: | ||
contents: write # to create releases | ||
|
||
jobs: | ||
draft_release: | ||
name: Draft Release | ||
if: > | ||
startsWith(github.event.pull_request.title, 'chore(release):') | ||
&& github.event.pull_request.merged | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
fetch-depth: 0 # we need the tags and the commit history for the gh release create command | ||
ref: ${{ github.event.pull_request.base.ref }} | ||
|
||
- name: Gather release information | ||
run: | | ||
RELEASE_VERSION=$(jq -r '.version' package.json) | ||
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | ||
PREVIOUS_VERSION=$(git describe --tags --abbrev=0) | ||
echo "PREVIOUS_VERSION=$PREVIOUS_VERSION" >> $GITHUB_ENV | ||
if [[ "$RELEASE_VERSION" == *"-"* ]]; then | ||
RELEASE_ARGS="--prerelease" | ||
else | ||
RELEASE_ARGS="--latest" | ||
fi | ||
echo "RELEASE_ARGS=$RELEASE_ARGS" >> $GITHUB_ENV | ||
- name: Create draft release | ||
run: | | ||
gh release create \ | ||
v$RELEASE_VERSION \ | ||
--draft \ | ||
$RELEASE_ARGS \ | ||
--generate-notes \ | ||
--notes-start-tag $PREVIOUS_VERSION \ | ||
--title v$RELEASE_VERSION | ||
env: | ||
GH_TOKEN: ${{ github.token }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Prepare Release PR | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
releaseType: | ||
description: 'The type of release to prepare a PR for.' | ||
required: true | ||
type: choice | ||
default: 'stable' | ||
options: | ||
- stable | ||
- alpha | ||
- beta | ||
- rc | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
prepare_release_pr: | ||
name: Prepare Release PR | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | ||
|
||
- name: Set node version to 22 | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | ||
with: | ||
node-version: 22 | ||
cache: 'pnpm' | ||
|
||
- name: Install deps | ||
run: pnpm install | ||
env: | ||
CYPRESS_INSTALL_BINARY: 0 | ||
|
||
- name: Run release | ||
run: | | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
if [ $RELEASE_TYPE = 'stable' ]; then | ||
pnpm run release | ||
else | ||
pnpm run release --prerelease $RELEASE_TYPE | ||
fi | ||
RELEASE_VERSION=$(jq -r '.version' package.json) | ||
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | ||
env: | ||
RELEASE_TYPE: ${{ github.event.inputs.releaseType }} | ||
|
||
- name: Switch to and push release branch | ||
run: | | ||
RELEASE_BRANCH="chore/release/$RELEASE_VERSION" | ||
echo "RELEASE_BRANCH=$RELEASE_BRANCH" >> $GITHUB_ENV | ||
git switch -c $RELEASE_BRANCH | ||
git push origin $RELEASE_BRANCH -f | ||
- name: Create draft PR | ||
run: | | ||
gh pr create \ | ||
--base $GITHUB_REF_NAME \ | ||
--head $RELEASE_BRANCH \ | ||
--draft \ | ||
--title "chore(release): $RELEASE_VERSION" \ | ||
--body " | ||
Release for $RELEASE_VERSION | ||
- [ ] Completed manual changes/tasks for this release | ||
--- | ||
- Checklist: TODO add link to issue | ||
" | ||
env: | ||
GH_TOKEN: ${{ github.token }} |
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
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.