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 258ece3 commit 65cc257Copy full SHA for 65cc257
README.md
@@ -11,16 +11,14 @@ If the file does not exist the action exits silently.
11
12
## Usage
13
14
-```hcl
15
-action "Create Issue From File" {
16
- uses = "peter-evans/create-issue-from-file@v1.0.1"
17
- secrets = ["GITHUB_TOKEN"]
18
- env = {
19
- ISSUE_TITLE = "An example issue"
20
- ISSUE_CONTENT_FILEPATH = "./example-content/output.md"
21
- ISSUE_LABELS = "report, automated issue"
22
- }
23
-}
+```yml
+ - name: Create Issue From File
+ uses: peter-evans/create-issue-from-file@v1.0.1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ISSUE_TITLE: An example issue
+ ISSUE_CONTENT_FILEPATH: ./example-content/output.md
+ ISSUE_LABELS: report, automated issue
24
```
25
26
#### Environment variables
0 commit comments