Reduce memory usage from aws-partitions #1104
Workflow file for this run
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@c3a1bb2c992d77180ae65be6ae6c166cf40f857c | |
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 without a corresponding change to the CHANGELOG.md. This change will not result in a new version and will not published unless an entry is added to CHANGELOG.md.' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |