Skip to content

Automated reminders to update demo metadata #3

Automated reminders to update demo metadata

Automated reminders to update demo metadata #3

name: Reminder to update demo metadata
on:
pull_request:
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 file so your changes show up on pennylane.ai.`
})