Skip to content

Commit

Permalink
Revert "Partially revert google#1576 (google#1700)"
Browse files Browse the repository at this point in the history
This reverts commit 60c5a33.
  • Loading branch information
djmitche committed Feb 8, 2024
1 parent d153145 commit b05abda
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/course-schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Course Schedule Updates"
on:
pull_request:
paths:
- "src/**.md"

jobs:
course-schedule:
runs-on: ubuntu-latest
name: Make Course Schedule Comment
permissions:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Rust cache
uses: ./.github/workflows/setup-rust-cache

- name: Generate Schedule
run: cargo run -p mdbook-course --bin course-schedule > course-schedule.md

- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
filePath: course-schedule.md
comment_tag: course-schedule

0 comments on commit b05abda

Please sign in to comment.