File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -110,10 +110,15 @@ jobs:
110
110
-t "CHANGELOG.md for $RELEASENUM" \
111
111
-b "Automated changelog for next release, $RELEASENUM"
112
112
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
115
120
with :
116
- go -version : ' 1.20 '
121
+ python -version : ' 3.9 '
117
122
118
123
- name : Add commit message to changelog pull request
119
124
# at this point a PR is opened for sure, now add entry
@@ -123,10 +128,7 @@ jobs:
123
128
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
124
129
git config user.name "github-actions[bot]"
125
130
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 }}'
130
132
131
133
git add CHANGELOG.md
132
134
git commit -m "Update changelog"
You can’t perform that action at this time.
0 commit comments