Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/merged-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
script: |
github.rest.issues.createComment({
...context.repo,
issue_number: context.payload.pull_request.number,
issue_number: context.payload.pull_request.number,2138420022
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid syntax: The number 2138420022 has been concatenated directly to the end of the issue_number property without proper separation. This will cause a JavaScript syntax error when the workflow runs. The comma and property name should be on their own line, and this appears to be an accidental addition that should be removed entirely.

Suggested change
issue_number: context.payload.pull_request.number,2138420022
issue_number: context.payload.pull_request.number,

Copilot uses AI. Check for mistakes.
body: "Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours. If you're looking for your next contribution, check out our [help wanted issues](https://github.com/github/docs/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) :zap:"
})
Loading