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 4cdc7e4 commit a71fe67Copy full SHA for a71fe67
.github/workflows/changerelease.yml
@@ -12,3 +12,5 @@ jobs:
12
steps:
13
- uses: actions/checkout@v2
14
- uses: dropseed/changerelease@master
15
+ with:
16
+ github_token: ${{ secrets.GITHUB_TOKEN }}
action.yml
@@ -5,8 +5,13 @@ inputs:
5
description: 'Path to your CHANGELOG'
6
required: false
7
default: 'CHANGELOG.md'
8
+ github_token:
9
+ description: "A GitHub token that can create and modify releases"
10
+ required: true
11
runs:
using: docker
image: Dockerfile
args:
- --changelog ${{ inputs.changelog }}
+ env:
17
+ GITHUB_TOKEN: ${{ inputs.github_token }}
0 commit comments