File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -110,10 +110,15 @@ jobs:
110110 -t "CHANGELOG.md for $RELEASENUM" \
111111 -b "Automated changelog for next release, $RELEASENUM"
112112
113- - name : Set up Go
114- uses : actions/setup-go@v3 # Set up go
113+ # - name: Set up Go
114+ # uses: actions/setup-go@v3 # Set up go
115+ # with:
116+ # go-version: '1.20'
117+
118+ - name : Set up Python
119+ uses : actions/setup-python@v4 # Set up Python environment
115120 with :
116- go -version : ' 1.20 '
121+ python -version : ' 3.9 '
117122
118123 - name : Add commit message to changelog pull request
119124 # at this point a PR is opened for sure, now add entry
@@ -123,10 +128,7 @@ jobs:
123128 git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
124129 git config user.name "github-actions[bot]"
125130
126- ls -R
127-
128-
129- go run .github/workflows/update_changelog.go '${{ needs.changelog-entry.outputs.entry }}'
131+ go run .github/workflows/update_changelog.py '${{ needs.changelog-entry.outputs.entry }}'
130132
131133 git add CHANGELOG.md
132134 git commit -m "Update changelog"
You can’t perform that action at this time.
0 commit comments