Bug/horizon test #3
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: Print PR Message - Release | |
on: | |
pull_request: | |
branches: | |
- 'release/**' | |
types: [opened] | |
jobs: | |
benchmark_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Auto Comment | |
uses: wow-actions/auto-comment@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pullRequestOpened: > | |
Thank you for opening this PR. Since this is a release branch, the PR must complete the release checklist, below: | |
- [ ] Check that each new feature has corresponding tests | |
- [ ] Confirm all dependencies are in the following: requirements.txt, setup.py, the bottom of dev_guide.rst | |
- [ ] Confirm that all issues associated with the release have been closed (i.e., requirements have been met) or assigned to another release | |
- [ ] Run unit tests `python -m tests` | |
- [ ] If present, run manual tests `python -m tests.test_manual` | |
- [ ] Review the template(s) | |
- [ ] Review static-analysis/linter results | |
- [ ] Review the tutorial | |
- [ ] Run and review the examples | |
- [ ] Check that all examples are tested | |
- [ ] Check new files in PR for any accidentally added | |
- [ ] Check documents | |
- [ ] Check that all desired examples are in docs | |
- [ ] General review: see if any updates are required | |
- [ ] Rebuild sphinx documents: `sphinx-build sphinx_config/ docs/` | |
- [ ] Write release notes | |
- [ ] Update version number in src/\*/__init__.py and setup.py | |
- [ ] For releases adding new features- ensure that NASA release process has been followed. | |
- [ ] Confirm that on GitHub Releases page, the next release has been started and that a schedule is present including at least Release Date, Release Review Date, and Release Branch Opening Date.` |