Update manifests to v1.9.2 #25
Workflow file for this run
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: Changelog | |
on: | |
push: | |
tags: | |
- v* | |
- "!v.0.9" | |
permissions: | |
contents: read | |
jobs: | |
generate_changelog: | |
permissions: | |
contents: write # for peter-evans/create-pull-request to create branch | |
pull-requests: write # for peter-evans/create-pull-request to create a PR | |
if: github.repository == 'argoproj/argo-events' | |
runs-on: ubuntu-latest | |
name: Generate changelog | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
fetch-depth: 0 | |
- run: git fetch --prune --prune-tags | |
- run: git tag -l 'v*' | |
# avoid invoking `make` to reduce the risk of a Makefile bug failing this workflow | |
- run: ./hack/changelog.sh > CHANGELOG.md | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
title: 'docs: updated CHANGELOG.md' | |
commit-message: 'docs: updated CHANGELOG.md' | |
signoff: true | |