Merge pull request #464 from MichaelDepner/add-PR-template-and-check

Add pr template and check
This commit is contained in:
Emily Bache 2023-09-05 14:08:17 +02:00 committed by GitHub
commit 44803c76a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 0 deletions

7
.github/pull_request_template.md vendored Normal file
View File

@ -0,0 +1,7 @@
# READ ME BEFORE SUBMITTING A PR
Please do not submit a PR with your solution to the Gilded Rose Kata. This repo is intended to be used as a starting point for the kata.
- [ ] I acknowledge that this PR is not a solution to the Gilded Rose Kata, but an improvement to the template.
## Please provide your PR description below this line

36
.github/workflows/pr-validation.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: "PR Tasks Completed Check"
on:
pull_request:
types: opened
jobs:
task-check:
# Only run from the base repository
if: github.event.repository.name == 'emilybache/GildedRose-Refactoring-Kata'
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Comment if checkmark is missing
if: ${{ !contains(github.event.pull_request.body, '[X] I acknowledge') }}
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: "Please don't submit a Pull Request containing a Kata solution to the original repo from Emily Bache. If you are instead trying to add an improvement, please resubmit this PR and check the `[X]` box in the PR template."
})
- name: Close PR if checkmark is missing
if: ${{ !contains(github.event.pull_request.body, '[X] I acknowledge') }}
uses: actions/github-script@v6
with:
script: |
github.rest.pulls.update({
pull_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
state: 'closed'
})