1
1
mirror of https://github.com/primer/css.git synced 2024-09-11 16:36:07 +03:00

Call this a release template

This commit is contained in:
Jon Rohan 2021-05-05 13:26:41 -07:00
parent 8d9f553e43
commit abe261ee71
No known key found for this signature in database
GPG Key ID: B0BBE304A9A0AECB
3 changed files with 16 additions and 14 deletions

View File

@ -1,11 +0,0 @@
Thanks for the pull request! Someone on the team will take a look at this soon. In the meantime you can make sure your code is ready to merge by following these steps.
### Checklist
- [ ] Does your change require a version bump? Add a changeset.
- [ ] Preview the docs change.
- [ ] Preview canary npm release.
<!-- diff_report --><!-- /diff_report -->
<!-- bundle_table --><!-- /bundle_table -->

13
.github/release_template.md vendored Normal file
View File

@ -0,0 +1,13 @@
Preparing for a release.
### Checklist
Make sure these items are checked before merging.
- [ ] Preview the docs change.
- [ ] Preview npm release candidate.
- [ ] CI passes on the release PR.
<!-- diff_report --><!-- /diff_report -->
<!-- bundle_table --><!-- /bundle_table -->

View File

@ -1,8 +1,8 @@
name: Welcome
on:
pull_request:
branches-ignore:
- 'dependabot/**'
branches:
- 'changeset-release/main'
jobs:
greetings:
@ -22,7 +22,7 @@ jobs:
github-token: ${{ secrets.GPR_AUTH_TOKEN_SHARED }}
script: |
const fs = require('fs')
const body = await fs.readFileSync('.github/greetings_template.md', 'utf8')
const body = await fs.readFileSync('.github/release_template.md', 'utf8')
const result = await github.issues.listComments({
issue_number: context.issue.number,
owner: context.repo.owner,