Skip to content

In the Template Files section, the link to "specific page templates" is missing.It leads to a 404 page saying "This page doesn’t exist." #901

In the Template Files section, the link to "specific page templates" is missing.It leads to a 404 page saying "This page doesn’t exist."

In the Template Files section, the link to "specific page templates" is missing.It leads to a 404 page saying "This page doesn’t exist." #901

name: New issue notifier
on:
issues:
types: [opened]
jobs:
notify-coordinators:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "Heads up @WordPress/docs-issues-coordinators, we have a new issue open. Time to use 'em labels."
})