We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aabaf12 commit c8594aeCopy full SHA for c8594ae
.github/ISSUE_TEMPLATE/bug_report.md
@@ -11,10 +11,29 @@ assignees: appleboy
11
12
A clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem.
13
14
-## Yaml Config
+## Yaml Config
15
16
Please post your Yaml configuration file along with the output results.
17
18
+```yaml
19
+name: remote ssh command
20
+on: [push]
21
+jobs:
22
+
23
+ build:
24
+ name: Build
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: executing remote ssh commands using password
28
+ uses: appleboy/[email protected]
29
+ with:
30
+ host: ${{ secrets.HOST }}
31
+ username: ${{ secrets.USERNAME }}
32
+ password: ${{ secrets.PASSWORD }}
33
+ port: ${{ secrets.PORT }}
34
+ script: whoami
35
+```
36
37
## Related environment
38
39
Please provide the following information:
0 commit comments