fix(deps): update module golang.org/x/text to v0.12.0 #307
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate CHANGELOG and NOTICE | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
GenerateChangelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
id: go | |
- run: make format changelog | |
- name: Commit & Push changes | |
run: | | |
if [[ ! -z $(git status --porcelain) ]]; then | |
git config --local user.email elasticcloudclients@elastic.co | |
git config --local user.name elasticcloudclients | |
git add notes NOTICE | |
git commit -m "Update changelog and NOTICE" | |
git push | |
fi |