Skip to content

Commit 8699892

Browse files
committed
Default token to github.token
1 parent adbc618 commit 8699892

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/ciff-example-command.yml

-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
- name: Create Issue From File
1111
uses: ./
1212
with:
13-
token: ${{ secrets.GITHUB_TOKEN }}
1413
title: An example issue
1514
content-filepath: ./example-content/output.md
1615
labels: report, automated issue
@@ -20,7 +19,6 @@ jobs:
2019
- name: Add reaction
2120
uses: peter-evans/create-or-update-comment@v1
2221
with:
23-
token: ${{ secrets.GITHUB_TOKEN }}
2422
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
2523
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
2624
reaction-type: hooray

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ If the file does not exist the action exits silently.
1616
- name: Create Issue From File
1717
uses: peter-evans/create-issue-from-file@v2
1818
with:
19-
token: ${{ secrets.GITHUB_TOKEN }}
2019
title: An example issue
2120
content-filepath: ./example-content/output.md
2221
labels: report, automated issue
@@ -26,6 +25,7 @@ If the file does not exist the action exits silently.
2625
2726
#### Inputs
2827
28+
- `token` - `GITHUB_TOKEN` or a `repo` scoped [PAT](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line). Defaults to `GITHUB_TOKEN`.
2929
- `title` (**required**) - The title of the issue
3030
- `content-filepath` (**required**) - The file path to the issue content
3131
- `labels` - A comma separated list of labels

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'An action to create an issue using content from a file'
33
inputs:
44
token:
55
description: 'The GitHub authentication token'
6-
required: true
6+
default: ${{ github.token }}
77
title:
88
description: 'The title of the issue.'
99
required: true

0 commit comments

Comments
 (0)