Add Main Reviewer checklist #1
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
# This workflows print a message to give the Main Reviewer a checklist (before merge) | ||
name: Main Reviewer Checklist | ||
on: | ||
pull_request: | ||
types: [assigned] | ||
jobs: | ||
checklist: | ||
# Not totally sure we need this | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Replace reviewer name in message template | ||
uses: falnyr/replace-env-vars-action@master | ||
env: | ||
# This is a wild guess. Probably it's also wrong. | ||
MAINREV: ${{ github.event.issue.assignees }} | ||
with: .github/workflows/main_rev_checklist.md | ||
Check failure on line 20 in .github/workflows/main-reviewer.yml GitHub Actions / Main Reviewer ChecklistInvalid workflow file
|
||
- name: Post filled template as comment | ||
uses: harupy/comment-on-pr@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
with: | ||
filename: main_rev_checklist.md |