adding plt.show() to show plots #138
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
name: Reminder to update demo metadata | |
on: | |
pull_request: | |
types: [opened, reopened] | |
paths: | |
- demonstrations/** | |
jobs: | |
reminder: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `👋 Hey, looks like you've updated some demos! | |
🐘 Don't forget to update the \`dateOfLastModification\` in the associated metadata files so your changes are reflected in Glass Onion (search and recommendations). | |
Please hide this comment once the field(s) are updated. Thanks!` | |
}) |