Comment PRs with updated schedule information #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
name: "Course Schedule Updates" | ||
on: | ||
# TODO: _target | ||
- pull_request | ||
jobs: | ||
course-schedule-comment: | ||
Check failure on line 7 in .github/workflows/pr-comments.yml GitHub Actions / Course Schedule UpdatesInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
needs: course-schedule | ||
name: Post Course Schedule to PR | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Download Schedule Artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
# This artifact is from the course-schedule job. | ||
name: course-schedule | ||
path: artifact | ||
- name: Comment PR | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
filePath: artifact/course-schedule.md | ||
comment_tag: course-schedule | ||