-
Notifications
You must be signed in to change notification settings - Fork 0
Asdasd #30
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
base: release
Are you sure you want to change the base?
Asdasd #30
Changes from all commits
f5b3c04
a8feb16
899937d
5d7330f
b00ddcd
01e1eba
6c8f822
3f584f2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| name: Greetings | ||
|
|
||
| on: [push] | ||
|
|
||
| jobs: | ||
| greeting: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/first-interaction@v1 | ||
| with: | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| message: "Test" | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -29,4 +29,4 @@ jobs: | |||||
| steps: | ||||||
| # Runs a single command using the runners shell | ||||||
| - name: Send greeting | ||||||
| run: echo "Hello ${{ inputs.name }}" | ||||||
| rn: echo "Hello ${{ inputs.name }}" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical Typo: Incorrect Key "rn" Used Instead of "run" The workflow step uses the key "rn" which is not recognized by GitHub Actions. This issue will prevent the command from executing as intended. Please update the key to "run". Proposed diff: - rn: echo "Hello ${{ inputs.name }}"
+ run: echo "Hello ${{ inputs.name }}"📝 Committable suggestion
Suggested change
🧰 Tools🪛 actionlint (1.7.4)32-32: unexpected key "rn" for "step" section. expected one of "continue-on-error", "env", "id", "if", "name", "run", "shell", "timeout-minutes", "uses", "with", "working-directory" (syntax-check) |
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,3 +3,6 @@ test3 | |
| test | ||
| test4 | ||
| test5 | ||
| test7 | ||
| asd | ||
| adasd | ||
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.
Critical Issue: Invalid Input Key "message" in Action Step
The action "actions/first-interaction@v1" does not support the input key "message". Valid inputs include "issue-message" or "pr-message" (in addition to "repo-token"). Depending on the intended use-case, please replace "message" with either "pr-message" (if targeting pull requests) or "issue-message" (if targeting issues).
Proposed diff (example using pull request messaging):
📝 Committable suggestion
🧰 Tools
🪛 actionlint (1.7.4)
12-12: input "message" is not defined in action "actions/first-interaction@v1". available inputs are "issue-message", "pr-message", "repo-token"
(action)