forked from misskey-dev/misskey
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into hiyuki/develop
# Conflicts: # .github/dependabot.yml # .github/workflows/labeler.yml # docker-compose.yml # docker-compose.yml.example # docker-compose_example.yml
- Loading branch information
Showing
1,178 changed files
with
91,805 additions
and
18,718 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
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
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 |
---|---|---|
@@ -1,21 +1,34 @@ | ||
'packages/backend': | ||
- packages/backend/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['packages/backend/**/*'] | ||
|
||
'packages/backend:test': | ||
- packages/backend/test/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['packages/backend/test/**/*'] | ||
|
||
'packages/frontend': | ||
- packages/frontend/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['packages/frontend/**/*'] | ||
|
||
'packages/frontend:test': | ||
- cypress/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['cypress/**/*'] | ||
|
||
'packages/sw': | ||
- packages/sw/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['packages/sw/**/*'] | ||
|
||
'packages/misskey-js': | ||
- packages/misskey-js/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['packages/misskey-js/**/*'] | ||
|
||
'packages/misskey-js:test': | ||
- packages/misskey-js/test/**/* | ||
- packages/misskey-js/test-d/**/* | ||
- any: | ||
- changed-files: | ||
- any-glob-to-any-file: ['packages/misskey-js/test/**/*', 'packages/misskey-js/test-d/**/*'] |
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,43 @@ | ||
name: Check the description in CHANGELOG.md | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
|
||
jobs: | ||
check-changelog: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout head | ||
uses: actions/checkout@v4.1.1 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4.0.1 | ||
with: | ||
node-version-file: '.node-version' | ||
|
||
- name: Checkout base | ||
run: | | ||
mkdir _base | ||
cp -r .git _base/.git | ||
cd _base | ||
git fetch --depth 1 origin ${{ github.base_ref }} | ||
git checkout origin/${{ github.base_ref }} CHANGELOG.md | ||
- name: Copy to Checker directory for CHANGELOG-base.md | ||
run: cp _base/CHANGELOG.md scripts/changelog-checker/CHANGELOG-base.md | ||
- name: Copy to Checker directory for CHANGELOG-head.md | ||
run: cp CHANGELOG.md scripts/changelog-checker/CHANGELOG-head.md | ||
- name: diff | ||
continue-on-error: true | ||
run: diff -u CHANGELOG-base.md CHANGELOG-head.md | ||
working-directory: scripts/changelog-checker | ||
|
||
- name: Setup Checker | ||
run: npm install | ||
working-directory: scripts/changelog-checker | ||
- name: Run Checker | ||
run: npm run run | ||
working-directory: scripts/changelog-checker |
Oops, something went wrong.