Update tutorial_How_to_optimize_QML_model_using_JAX_and_Optax.py #9
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 show up on [pennylane.ai](https://pennylane.ai). | |
Please hide this comment once the field(s) are updated. Thanks!` | |
}) |