Skip to content

Commit

Permalink
New action Pull Request Reminder (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenjoezhang committed Oct 21, 2022
1 parent c108c96 commit 1e0f28d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pull Request Reminder

on:
pull_request_target:
types:
- labeled

jobs:
reminder:
if: ${{ github.event.label.name == 'Configurations' }}
runs-on: ubuntu-latest

steps:
- name: Comment PR
uses: marocchino/sticky-pull-request-comment@v2
with:
message: |
This pull request contains changes to the configuration file. Please make sure the documentation in [NexT website](https://theme-next.js.org/docs/) is changed or added.
Please edit relevant source files here: https://github.com/next-theme/theme-next-docs/tree/master/source/docs and create a pull request with the changes here: https://github.com/next-theme/theme-next-docs/pulls

0 comments on commit 1e0f28d

Please sign in to comment.