-
-
Notifications
You must be signed in to change notification settings - Fork 53
Fixed CodeRabbit Check. Added No Issue PR Check #385
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
palisadoes
merged 4 commits into
PalisadoesFoundation:develop
from
palisadoes:updatedGuidelinesPR
Nov 27, 2025
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
dd8d7c7
Fixed CodeRabbit Check. Added No Issue PR Check
palisadoes 3ef519f
Fixed CodeRabbit Check. Added No Issue PR Check 1764267510
palisadoes 5ac3e87
Fixed CodeRabbit Check. Added No Issue PR Check 1764271314
palisadoes a1cc4fb
Fixed CodeRabbit Check. Added No Issue PR Check 1764271818
palisadoes 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,2 @@ | ||
| palisadoes | ||
| noman2002 |
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,58 @@ | ||
| ############################################################################## | ||
| ############################################################################## | ||
| # | ||
| # NOTE! | ||
| # | ||
| # Please read the README.md file in this directory that defines what should | ||
| # be placed in this file | ||
| # | ||
| ############################################################################## | ||
| ############################################################################## | ||
|
|
||
| name: PR Target Workflow | ||
| on: | ||
| pull_request_target: | ||
|
|
||
| # Required for arkid15r/check-pr-issue-action | ||
| permissions: | ||
| contents: read | ||
| issues: read | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| PR-Greeting: | ||
| name: Pull Request Target | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Add the PR Review Policy | ||
| uses: thollander/actions-comment-pull-request@v3 | ||
| with: | ||
| comment-tag: pr_review_policy | ||
| message: | | ||
| ## Our Pull Request Approval Process | ||
|
|
||
| This PR will be reviewed according to the [Palisadoes Contributing Guidelines](https://developer.palisadoes.org/docs/contributor-guide/contributing) | ||
|
|
||
| Thanks for contributing! | ||
|
|
||
| - name: Greeting Message to User | ||
| uses: actions/first-interaction@v3 | ||
| with: | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| pr_message: 'Congratulations on making your first PR!' | ||
|
|
||
| # Check-PR-Issue: | ||
| # name: Check PR Issue Assignment | ||
| # runs-on: ubuntu-latest | ||
| # needs: [PR-Greeting] | ||
| # steps: | ||
| # - uses: actions/checkout@v4 | ||
| # - name: Check PR linked issue and assignee | ||
| # uses: arkid15r/check-pr-issue-action@f2c2ac3b8c73b5da96294af9ac3ec174098cf513 | ||
| # with: | ||
| # close_pr_on_failure: 'true' | ||
| # github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| # no_assignee_message: 'The linked issue must be assigned to the PR author.' | ||
| # no_issue_message: 'The PR must be linked to an issue assigned to the PR author.' | ||
| # require_assignee: 'true' | ||
| # skip_users_file_path: '.github/workflows/config/check-pr-issue-skip-usernames.txt' | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
actions/first-interaction@v3 input parameters documentation💡 Result:
Here are the input parameters for actions/first-interaction@v3 (First Contribution action):
onceto greet on absolute first interaction). [1]true, fail the workflow step when an error occurs (default:false). [1]+1,-1,laugh,confused,heart,hooray,rocket,eyes). [1]Note: labels/reactions are only applied on opened contributions (not on closed events). [1]
Source: action README / inputs documentation. [1]
References
[1] First Contribution (actions/first-interaction) inputs documentation — GitHub Marketplace / README.
Correct the action input parameters: use
tokeninstead ofrepo-tokenandpr-opened-msginstead ofpr_message.The
repo-tokenparameter is invalid foractions/first-interaction@v3. According to the official documentation, the correct parameter istoken. Additionally, the code usespr_messagewhich should bepr-opened-msg. The action will not recognize these incorrect parameter names.Update lines 38-42 to:
🧰 Tools
🪛 actionlint (1.7.9)
41-41: input "repo-token" is not defined in action "actions/first-interaction@v3". available inputs are "issue_message", "pr_message", "repo_token"
(action)
🤖 Prompt for AI Agents