mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 10:08:40 -05:00
Comment changelog validation until jira support is added
This commit is contained in:
parent
92ad13cd04
commit
e7e5269bc1
1 changed files with 19 additions and 19 deletions
38
.github/workflows/release.yml
vendored
38
.github/workflows/release.yml
vendored
|
|
@ -29,26 +29,26 @@ jobs:
|
||||||
echo "version=$version" >> $GITHUB_OUTPUT
|
echo "version=$version" >> $GITHUB_OUTPUT
|
||||||
echo "Found version $version from lib/vmpooler/version.rb"
|
echo "Found version $version from lib/vmpooler/version.rb"
|
||||||
|
|
||||||
- name: Generate Changelog
|
# - name: Generate Changelog
|
||||||
uses: docker://githubchangeloggenerator/github-changelog-generator:1.16.2
|
# uses: docker://githubchangeloggenerator/github-changelog-generator:1.16.2
|
||||||
with:
|
# with:
|
||||||
args: >-
|
# args: >-
|
||||||
--future-release ${{ steps.nv.outputs.version }}
|
# --future-release ${{ steps.nv.outputs.version }}
|
||||||
env:
|
# env:
|
||||||
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Validate Changelog
|
# - name: Validate Changelog
|
||||||
run : |
|
# run : |
|
||||||
set -e
|
# set -e
|
||||||
if [[ -n $(git status --porcelain) ]]; then
|
# if [[ -n $(git status --porcelain) ]]; then
|
||||||
echo "Here is the current git status:"
|
# echo "Here is the current git status:"
|
||||||
git status
|
# git status
|
||||||
echo
|
# echo
|
||||||
echo "The following changes were detected:"
|
# echo "The following changes were detected:"
|
||||||
git --no-pager diff
|
# git --no-pager diff
|
||||||
echo "Uncommitted PRs found in the changelog. Please submit a release prep PR of changes after running `./update-changelog`"
|
# echo "Uncommitted PRs found in the changelog. Please submit a release prep PR of changes after running `./update-changelog`"
|
||||||
exit 1
|
# exit 1
|
||||||
fi
|
# fi
|
||||||
|
|
||||||
- name: Generate Release Notes
|
- name: Generate Release Notes
|
||||||
uses: docker://githubchangeloggenerator/github-changelog-generator:1.16.2
|
uses: docker://githubchangeloggenerator/github-changelog-generator:1.16.2
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue