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 70a84ac commit 4f3c585Copy full SHA for 4f3c585
action.yml
@@ -9,7 +9,7 @@ branding:
9
inputs:
10
token:
11
description: GitHub Token
12
- default: ${{ secrets.GITHUB_TOKEN }}
+ default: ${{ github.token }}
13
extractors:
14
description: GitHub Repository where the extractor(s) is located
15
required: true
src/action.rs
@@ -32,7 +32,7 @@ pub const AUTHORS: &str = env!("CARGO_PKG_AUTHORS");
32
)]
33
pub struct Action {
34
/// GitHub Token
35
- #[input(description = "GitHub Token", default = "${{ secrets.GITHUB_TOKEN }}")]
+ #[input(description = "GitHub Token", default = "${{ github.token }}")]
36
token: String,
37
38
/// GitHub Repository where the extractor is located
0 commit comments