-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reject PR if identical to pull_request_template.md #281
Open
Himani1519
wants to merge
11
commits into
v2.x/staging
Choose a base branch
from
feature/update_changelog_action
base: v2.x/staging
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
d330f0b
reject PR if identical to pull_request_template.md
2056016
fixed path
Himani1519 5a47606
minor fixes
Himani1519 0f16fa6
seperate steps for template comparsion and extract changelog
Himani1519 adfd8f4
Merge branch 'v2.x/staging' of https://github.com/zowe/zlux-app-serve…
Himani1519 a7b571e
some fixes
Himani1519 969c6c4
minor fixes
Himani1519 a065936
Merge branch 'v2.x/staging' of https://github.com/zowe/zlux-app-serve…
Himani1519 76dfa28
update changelog.md
Himani1519 5418320
Move to node-base changelog setting
1000TurquoisePogs e64aed9
Merge pull request #285 from zowe/feature/node-based-changelog-setting
1000TurquoisePogs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,32 +67,69 @@ jobs: | |
echo "ERROR: CHANGELOG.md has not been updated." | ||
echo "::set-output name=check_commit::false" | ||
fi | ||
- name: Extract changelog info | ||
- name: Compare PR description with template | ||
if: steps.check-changelog.outputs.check_commit == 'false' | ||
env: | ||
PR_DESCRIPTION: ${{ github.event.pull_request.body }} | ||
run: | | ||
# Safely print the PR description using Node.js | ||
node -e 'const prDesc = process.env.PR_DESCRIPTION; console.log("----- PR Description Start -----\n" + prDesc + "\n----- PR Description End -----");' | ||
echo "$PR_DESCRIPTION" > /tmp/pr_description.txt | ||
echo "PR DESCRIPTION saved to /tmp/pr_description.txt." | ||
|
||
# Save the template content to a file without modifying it | ||
cat .github/pull_request_template.md > /tmp/template_content.txt | ||
echo "Template content saved to /tmp/template_content.txt." | ||
|
||
|
||
# Use diff to compare the two files | ||
if diff -wB /tmp/pr_description.txt /tmp/template_content.txt > /dev/null; then | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just diff .github/pull_request_template.md directly. |
||
echo "ERROR: PR description is identical to the template." | ||
exit 1 | ||
else | ||
echo "PR description and template are different." | ||
fi | ||
|
||
- name: Extract changelog info using Node.js | ||
if: steps.check-changelog.outputs.check_commit == 'false' | ||
id: extract-changelog | ||
run: | | ||
PR_DESCRIPTION="${{ github.event.pull_request.body }}" | ||
PR_DESCRIPTION=$(cat /tmp/pr_description.txt) | ||
|
||
# Check if "changelog:" exists in PR description | ||
if echo "$PR_DESCRIPTION" | grep -q "VERSION:" && echo "$PR_DESCRIPTION" | grep -q "CHANGELOG:"; then | ||
# Extract text after "changelog:" | ||
CHANGELOG_TEXT=$(echo $PR_DESCRIPTION | sed -n 's/.*CHANGELOG: \(.*\)/\1/p') | ||
|
||
# Extract content after "changelog:" using Node.js | ||
CHANGELOG_TEXT=$(node -e "const lines = process.env.PR_DESCRIPTION.split('\n'); \ | ||
for (const line of lines) { \ | ||
if (line.startsWith('CHANGELOG: ')) { \ | ||
console.log(line.substring('CHANGELOG: '.length)); \ | ||
break; \ | ||
} \ | ||
}") | ||
|
||
# Extract VERSION: from PR description | ||
VERSION=$(echo "$PR_DESCRIPTION" | grep -oP 'VERSION:\s*\Kv\d+\.\d+\.\d+') | ||
|
||
echo "Extracted changelog: $CHANGELOG_TEXT" | ||
echo "::set-output name=changelog::$CHANGELOG_TEXT" | ||
echo "::set-output name=changelog::$(echo "$CHANGELOG_TEXT" | base64)" | ||
echo "::set-output name=version::$VERSION" | ||
|
||
else | ||
echo -e "No changelog and version information found in PR description please add them.\n Expected Format:\n VERSION:vX.XX.X\n CHANGELOG:This is changelog note.\n | ||
To re-run the action, just make a push or commit after updating the PR description or updating the changelog via a manual file changing commit." | ||
echo -e "No changelog and version information found in PR description. Please add them.\nExpected Format:\nVERSION:vX.XX.X\nCHANGELOG:This is changelog note.\nTo re-run the action, just make a push or commit after updating the PR description or updating the changelog via a manual file changing commit." | ||
exit 1 | ||
fi | ||
|
||
env: | ||
PR_DESCRIPTION: ${{ env.PR_DESCRIPTION }} | ||
|
||
- name: Check PR body against changelog | ||
if: steps.check-changelog.outputs.check_commit == 'false' | ||
run: | | ||
ESCAPED_CHANGELOG="${{ steps.extract-changelog.outputs.changelog }}" | ||
ESCAPED_CHANGELOG=$(echo "${{ steps.extract-changelog.outputs.changelog }}" | base64 -d) | ||
echo "$ESCAPED_CHANGELOG" | ||
ESCAPED_CHANGELOG=$(echo "$ESCAPED_CHANGELOG" | sed "s/'/\\\\'/g") | ||
VERSION="${{ steps.extract-changelog.outputs.version }}" | ||
|
||
if ! grep -Fq "$ESCAPED_CHANGELOG" CHANGELOG.md; then | ||
# Check if version exists in CHANGELOG.md | ||
if grep -q "^## $VERSION" CHANGELOG.md; then | ||
|
@@ -110,6 +147,7 @@ jobs: | |
git commit -s -m "Update changelog with PR #${{ github.event.pull_request.number }} description" | ||
git push | ||
fi | ||
|
||
- name: check for changes | ||
id: check-change | ||
run: | | ||
|
@@ -118,25 +156,23 @@ jobs: | |
echo "::set-output name=change_detected::false" | ||
else | ||
echo "::set-output name=change_detected::true" | ||
fi | ||
|
||
check_changelog: | ||
if: github.event_name == 'pull_request' | ||
needs: update-changelog | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Verify Changelog update | ||
run: | | ||
if [ "${{ needs.update-changelog.outputs.was_updated }}" != "true" ]; then | ||
echo "CHANGELOG.md not updated, please update CHANGELOG.md with the changes made in the pull request" | ||
exit 1 | ||
else | ||
echo "changelog was updated successfully." | ||
fi | ||
check_changelog: | ||
if: github.event_name == 'pull_request' | ||
needs: update-changelog | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Verify Changelog update | ||
run: | | ||
if [ "${{ needs.update-changelog.outputs.was_updated }}" != "true" ]; then | ||
echo "CHANGELOG.md not updated, please update CHANGELOG.md with the changes made in the pull request" | ||
exit 1 | ||
else | ||
echo "changelog was updated successfully." | ||
fi | ||
build: | ||
runs-on: ubuntu-latest | ||
needs: check-permission | ||
|
@@ -152,7 +188,6 @@ jobs: | |
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-cache-node-modules- | ||
|
||
- name: '[Prep 2] Setup Node' | ||
uses: actions/setup-node@v2 | ||
with: | ||
|
@@ -190,5 +225,4 @@ jobs: | |
pax-name: zlux-core | ||
|
||
- name: '[Prep 7] deploy' | ||
uses: zowe-actions/zlux-builds/core/[email protected]/main | ||
|
||
uses: zowe-actions/zlux-builds/core/[email protected]/main |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there's no reason to do this? it's already a file.