Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/0-start-exercise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: |
!github.event.repository.is_template
name: Start Exercise
uses: skills/exercise-toolkit/.github/workflows/start-exercise.yml@v0.7.0
uses: skills/exercise-toolkit/.github/workflows/start-exercise.yml@v0.7.3
with:
exercise-title: "(replace-me: Exercise title)"
intro-message: "(replace-me: Brief one line introduction message for the exercise)"
Expand All @@ -35,14 +35,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get response templates
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
ref: v0.7.0
ref: v0.7.3

- name: Create comment - add step content
uses: GrantBirki/comment@v2.1.1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/1-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
jobs:
find_exercise:
name: Find Exercise Issue
uses: skills/exercise-toolkit/.github/workflows/find-exercise-issue.yml@v0.7.0
uses: skills/exercise-toolkit/.github/workflows/find-exercise-issue.yml@v0.7.3

post_next_step_content:
name: Post next step content
Expand All @@ -32,14 +32,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get response templates
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
ref: v0.7.0
ref: v0.7.3

- name: Create comment - step finished
uses: GrantBirki/comment@v2.1.1
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/2-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
jobs:
find_exercise:
name: Find Exercise Issue
uses: skills/exercise-toolkit/.github/workflows/find-exercise-issue.yml@v0.7.0
uses: skills/exercise-toolkit/.github/workflows/find-exercise-issue.yml@v0.7.3

# This job is optional. We often call it a "grading job". If the step is not graded, remove it.
check_step_work:
Expand All @@ -36,18 +36,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get response templates
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
ref: v0.7.0
ref: v0.7.3

- name: Find last comment
id: find-last-comment
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
with:
repository: ${{ env.ISSUE_REPOSITORY }}
issue-number: ${{ env.ISSUE_NUMBER }}
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Check if README file exists
id: check-file-exists
continue-on-error: true
uses: skills/exercise-toolkit/actions/file-exists@v0.7.0
uses: skills/exercise-toolkit/actions/file-exists@v0.7.3
with:
file: README.md

Expand Down Expand Up @@ -115,14 +115,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get response templates
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
ref: v0.7.0
ref: v0.7.3

- name: Create comment - step finished
uses: GrantBirki/comment@v2.1.1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/3-last-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:
find_exercise:
name: Find Exercise Issue
uses: skills/exercise-toolkit/.github/workflows/find-exercise-issue.yml@v0.7.0
uses: skills/exercise-toolkit/.github/workflows/find-exercise-issue.yml@v0.7.3

post_review_content:
name: Post review content
Expand All @@ -34,14 +34,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get response templates
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
ref: v0.7.0
ref: v0.7.3

- name: Create comment - step finished - final review next
uses: GrantBirki/comment@v2.1.1
Expand All @@ -65,7 +65,7 @@ jobs:
finish_exercise:
name: Finish Exercise
needs: [find_exercise, post_review_content]
uses: skills/exercise-toolkit/.github/workflows/finish-exercise.yml@v0.7.1
uses: skills/exercise-toolkit/.github/workflows/finish-exercise.yml@v0.7.3
with:
issue-url: ${{ needs.find_exercise.outputs.issue-url }}
exercise-title: "(replace-me: Exercise title)"