We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1533b16 commit 18b5a65Copy full SHA for 18b5a65
1 file changed
.github/workflows/release-proposal.yml
@@ -24,7 +24,7 @@ jobs:
24
create-proposal:
25
runs-on: ubuntu-latest
26
permissions:
27
- contents: read
+ contents: write
28
pull-requests: write
29
env:
30
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -37,5 +37,7 @@ jobs:
37
- run: |
38
mkdir -p ~/.config/changelog-maker
39
echo "{\"token\":\"${{secrets.GITHUB_TOKEN}}\",\"user\":\"${{github.actor}}\"}" > ~/.config/changelog-maker/config.json
40
+ git config user.name ${{ github.actor }}
41
+ git config user.email ${{ github.actor }}@users.noreply.github.com
42
- run: node scripts/release/proposal 5 -y --{{ inputs.increment }}
43
if: inputs.release-line == 'all' || inputs.release-line == '5'
0 commit comments