[DO NOT MERGE] CBOR Performance Testing #1153
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
on: | |
pull_request: | |
paths: | |
- 'gems/aws-sdk-core/**/*.rb' | |
jobs: | |
changelog_comment_pr: | |
runs-on: ubuntu-latest | |
name: Comment when CHANGELOG entry is missing | |
steps: | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@d6e91a2266cdb9d62096cebf1e8546899c6aa18f | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: Comment on PR | |
if: ${{contains(steps.changed-files.outputs.all_changed_files, 'gems/aws-sdk-core/CHANGELOG.md')}} | |
uses: thollander/actions-comment-pull-request@main | |
with: | |
message: 'You have made a change to core with a corresponding change to the CHANGELOG.md. This change will result in a new version and will be published.' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |