index.yml 580 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# 在所有的任务之前执行
before:
  link: '{{chapter_1_url}}'
  transitions:
    action:
      - type: create_issue
        title: "带你了解冒泡排序"
        with: 001_about_bubble_sort.md
        store:
          chapter_1_url: '{{result.data.html_url}}'
      - type: choice
        with: first.md
    to: step1

# Task 列表
step1:
  link: '{{chapter_1_url}}'
  description: "小调查: 你了解版本控制系统吗?"
  transitions:
    events: ['note_events']
    action:
      - type: issue_comment.created
        with: 001_2_vsc_survey.md
    to: step2