Skip to content

Github Action to Validate Changelogs #7

Github Action to Validate Changelogs

Github Action to Validate Changelogs #7

name: WARP Validate Changelog
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "develop" and "master" branch
# Uncomment this block and add your branch name to test without creating a PR
#push:
#branches: [ "kp_github_actions_pd-2113" ]
#paths-ignore:
# - '**/README.md'
pull_request:
branches: [ "develop", "master" ]
# paths:
# - 'tools/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# inputs:
# image_tag:
# description: 'Docker Image Tag (default: branch_name)'
env:
PROJECT_NAME: WARP
# Github repo name
REPOSITORY_NAME: ${{ github.event.repository.name }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# The job that builds our container
validate-changelog:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: tools
# Map a step output to a job output
# outputs:
# imagePath: ${{ steps.saveImagePath.outputs.url }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for all tags and branches
- name: Check working directory
run: |
echo "Current directory: "
pwd
ls -lht
- name: Set up Git
run: |
git fetch --all
- name: Validate changelogs
id: validate_script
run: |
set -e
echo "Validating changelog for ${{ github.base_ref }}"
result=$(scripts/validate_release.sh -g origin/${{ github.base_ref }} 2>&1)
echo "::set-output name=result::$result"
continue-on-error: true # Continue even if the validation fails
- name: Post validation results as a comment
if: ${{ failure() }}
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const output = `${{ steps.validate_script.outputs.result }}`;
const issue_number = context.payload.pull_request.number;
const message = `### Validation Results:\n\`\`\`\n${output}\n\`\`\``;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: message
});