33 lines
928 B
YAML
33 lines
928 B
YAML
name: 'Troubleshooting'
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- 'opened'
|
|
|
|
jobs:
|
|
troubleshooting:
|
|
permissions:
|
|
issues: 'write'
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
|
- uses: 'actions/github-script@v6'
|
|
with:
|
|
script: |-
|
|
const msg =
|
|
`Hi there @${context.actor} :wave:!\n` +
|
|
`\n` +
|
|
`Thank you for opening an issue. Our team will triage this as soon as we ` +
|
|
`can. Please take a moment to review the ` +
|
|
`[troubleshooting steps](https://github.com/google-github-actions/auth/blob/main/docs/TROUBLESHOOTING.md) ` +
|
|
`which lists common error messages and their resolution steps.`;
|
|
|
|
await github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: msg,
|
|
});
|