Merge pull request #6719 from symless/issue-6718-changlog-action

Added Github action to check for changed to changlog
This commit is contained in:
Jnewbon 2020-07-11 18:40:03 +01:00 committed by GitHub
commit 624e1ef61c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,39 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler/blob/master/README.md
name: Changlog Updated
on:
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- id: file_changes
name: Get changed files
uses: trilom/file-changes-action@v1.2.3
with:
output: ','
- name: echo changes
run: |
echo Files
echo '${{ steps.file_changes.outputs.files}}'
echo Modified
echo '${{ steps.file_changes.outputs.files_modified}}'
echo Added
echo '${{ steps.file_changes.outputs.files_added}}'
echo Removed
echo '${{ steps.file_changes.outputs.files_removed}}'
- name: List files
run: |
if [[ "${{ steps.file_changes.outputs.files_modified}}" == *"ChangeLog"* ]]; then
echo "Changlog has been updated"
else
echo "::error file=app.js,line=10,col=15::Changelog hasnt been updated"
exit 1
fi

View File

@ -16,6 +16,7 @@ Enhancements:
- #6714 Added windows core binaries upload to sandor
- #6715 Updated language file from Crowdin
- #6688 Fully migrate CI from Jenkins to Azure Pipelines
- #6718 Action to test PR's for updated changelog
Features:
- #6538 System-wide config for all system users