Skip to content

add PR numbers to changelog #434

add PR numbers to changelog

add PR numbers to changelog #434

Workflow file for this run

name: Changelog check
on:
# allows us to run workflows manually
workflow_dispatch:
pull_request:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
changelog_update:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
container:
image: alpine:3.14
name: Is Changelog up-to-date ?
steps:
- name: Install latest git
run: |
apk add --no-cache bash git openssh
git --version
- name: Checkout repository and housekeeping
uses: actions/checkout@v3
- run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
cd $GITHUB_WORKSPACE
CI/scripts/changelog_test.sh