forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Head1 #3
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
Open
hackal
wants to merge
15
commits into
base1
Choose a base branch
from
head1
base: base1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Head1 #3
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
a0910cd
New Crowdin Translations (automated) (#30772)
github-actions[bot] 7889e98
Add `group_key` attribute to `NotificationSerializer` (#30776)
ClearlyClaire 2752924
Improve `createdataLoadingThunk` (#30778)
renchap 1c65932
Convert `disconnectTimeline` and `timelineDelete` actions to Typescri…
renchap f723370
Fix missing `account_warning` delegation in `NotificationGroup` (#30779)
ClearlyClaire 6ab6146
Remove --no-exclude-limit for RuboCop ToDo (#30427)
nschonni bb2d77b
Change `/api/v2_alpha/notifications` to only return historical data i…
ClearlyClaire aa2ecd0
Create .callstack.yaml
hackal 56288e7
Create reviewer.yaml
hackal 3d554d5
Rename reviewer.yaml to reviewer.yml
hackal c48c1b5
introduce text parsing
hackal af3a1a9
Update notification_group.rb
hackal 9a8c852
Update notification_group.rb
hackal 0426f7a
Update notification_group.rb
hackal 6c26740
Update notification_group.rb
hackal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,31 @@ | ||
| # yaml-language-server: $schema=https://storage.googleapis.com/config-schema/schema.v2.json | ||
|
|
||
| pr_review: | ||
| modules: | ||
| bug_hunter: | ||
| enabled: true | ||
| suggestions: true | ||
|
|
||
| code_suggestions: | ||
| enabled: false | ||
|
|
||
| code_conventions: | ||
| enabled: false | ||
| conventions: | | ||
| Exported code should be defined before internal code. | ||
|
|
||
| description: | ||
| enabled: true | ||
| diagram: true | ||
|
|
||
| grammar: | ||
| enabled: true | ||
|
|
||
| performance: | ||
| enabled: true | ||
|
|
||
| security: | ||
| enabled: true | ||
|
|
||
| exclude: | ||
| - "**/go.*" |
This file contains hidden or 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,33 @@ | ||
| name: Cal PR Review | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| config: | ||
| type: string | ||
| description: "config for reviewer" | ||
| required: true | ||
| head: | ||
| type: string | ||
| description: "head commit sha" | ||
| required: true | ||
| base: | ||
| type: string | ||
| description: "base commit sha" | ||
| required: false | ||
| jobs: | ||
| review: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ inputs.head }} | ||
|
|
||
| - name: Run reviewer | ||
| uses: addnab/docker-run-action@v3 | ||
| with: | ||
| image: callstackai/cal:latest | ||
| options: -v ${{ github.workspace }}:/code | ||
| run: | | ||
| /reviewer --dir /code --id ${{ github.run_id }} --token ${{ github.token }} --config "${{ inputs.config }}" |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,20 @@ | ||
| import { createAction } from '@reduxjs/toolkit'; | ||
|
|
||
| import { usePendingItems as preferPendingItems } from 'mastodon/initial_state'; | ||
|
|
||
| export const disconnectTimeline = createAction( | ||
| 'timeline/disconnect', | ||
| ({ timeline }: { timeline: string }) => ({ | ||
| payload: { | ||
| timeline, | ||
| usePendingItems: preferPendingItems, | ||
| }, | ||
| }), | ||
| ); | ||
|
|
||
| export const timelineDelete = createAction<{ | ||
| statusId: string; | ||
| accountId: string; | ||
| references: string[]; | ||
| reblogOf: string | null; | ||
| }>('timelines/delete'); |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.