-
Notifications
You must be signed in to change notification settings - Fork 18
docs: avoid duplicate notifications in Goal issues #96
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
Merged
zolotokrylin
merged 8 commits into
main
from
docs/clarify-no-duplicate-notifications-in-goal-issues
Apr 8, 2026
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8c6c26a
docs: avoid duplicate notifications in Goal issues
zolotokrylin 8c7e249
fix(lint): run CI check
zolotokrylin 6a5912f
fix(lint): run CI check
zolotokrylin b0d8c8a
fix(lint): run CI check
zolotokrylin ff3d3e7
Update .claude/settings.local.json
zolotokrylin a53b745
chore: ignore files
zolotokrylin 6c92360
Merge branch 'docs/clarify-no-duplicate-notifications-in-goal-issues'…
zolotokrylin 403bcb4
ci: use reusable Actions
zolotokrylin 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 |
|---|---|---|
| @@ -1,28 +1,35 @@ | ||
| name: Markdown Lint | ||
| name: Validate Markdown and PR naming | ||
|
|
||
| on: | ||
| push: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| # Also trigger on ready_for_review to run when a PR changes from draft to ready | ||
| types: [opened, reopened, synchronize, ready_for_review] | ||
| paths: | ||
| - "**.md" | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| - reopened | ||
| - ready_for_review | ||
|
|
||
| jobs: | ||
| lint: | ||
| checks: | ||
| if: github.event.pull_request.draft == false | ||
| runs-on: ubuntu-latest | ||
| if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Install rumdl pre-compiled binary | ||
| run: | | ||
| # Define the URL for the latest Linux binary | ||
| DOWNLOAD_URL="https://github.com/rvben/rumdl/releases/download/v0.0.185/rumdl-v0.0.185-x86_64-unknown-linux-gnu.tar.gz" | ||
|
|
||
| # Use curl to download the archive and tar to extract it | ||
| curl -sL $DOWNLOAD_URL | tar -xz -C /usr/local/bin/ | ||
| - uses: holdex/github-actions/.github/actions/base/checkout@main | ||
| with: | ||
| ref: 05eefbf2dfd772dbb2c12b9985d21ac24c5da0e5 | ||
|
|
||
| - uses: ./.holdex-actions/.github/actions/base/setup-runtime | ||
| with: | ||
| package-manager: bun | ||
|
|
||
| # Ensure the binary is executable and in the PATH | ||
| chmod +x /usr/local/bin/rumdl | ||
| - name: Lint Markdown | ||
| run: rumdl check --output-format github . | ||
| - uses: ./.holdex-actions/.github/actions/composed/pr-checks | ||
| with: | ||
| run-prettier: false | ||
| run-markdown: true | ||
| run-commits: true | ||
| package-manager: bun |
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 @@ | ||
| .claude/settings.local.json |
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.
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.