-
Notifications
You must be signed in to change notification settings - Fork 38
34 lines (28 loc) · 914 Bytes
/
9-template.yml
File metadata and controls
34 lines (28 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Step 9, Complete Quest - Templates
on:
workflow_dispatch:
issues:
types: [opened]
permissions:
contents: write
issues: write
jobs:
update_step_on_complete_quest:
if: |
github.event.issue.title == 'Quest: I want a Production-Ready Template to customize'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Update to step 10
uses: skills/action-update-step@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
from_step: 9
to_step: 10
- name: Comment and close issue
uses: peter-evans/close-issue@v3
with:
comment: |
🎉 Congratulations! You've completed the Templates quest. Your progress has been updated and you can now continue to the next step.
👉 [Go to the main README to continue](../README.md)