fix: synthesize shape in sub-environment scope #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checker | |
on: | |
pull_request_target: | |
types: [opened] | |
jobs: | |
check_body: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Alert if no body | |
if: ${{ github.event.pull_request.body == '' }} | |
uses: actions/github-script@v3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
github.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '👋 Thanks for the PR. Please add a description to the PR, so others know what has been changed :)' | |
}) |