Skip to content

Revert "Create PULL_REQUEST_TEMPLATE.md (#40)" #3

Revert "Create PULL_REQUEST_TEMPLATE.md (#40)"

Revert "Create PULL_REQUEST_TEMPLATE.md (#40)" #3

Workflow file for this run

name: PR Block Rules
on:
pull_request:
types: [opened, edited]
jobs:
comment-on-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Display block rules
run: |
RULES=$(cat ./block_creation_rules.md)
gh pr comment ${{ github.event.pull_request.number }} --body "$RULES"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}