We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 162142b commit 8ff4b1eCopy full SHA for 8ff4b1e
1 file changed
action.yml
@@ -18,6 +18,14 @@ inputs:
18
description: "Update existing backlinks."
19
required: false
20
default: true
21
+ backlinks_header:
22
+ description: "Override the default backlinks header."
23
+ required: false
24
+ default: "## Pages that link here"
25
+ toc_header:
26
+ description: "Override the default table of contents header."
27
28
+ default: "**Table of Contents:**"
29
30
runs:
31
using: "composite"
@@ -29,6 +37,7 @@ runs:
37
env:
38
INPUT_PATH: ${{ inputs.path }}
39
ACTION_PATH: ${{ github.action_path }}
40
+ WIKI_BACKLINKS_HEADER: ${{ inputs.backlinks_header }}
32
41
33
42
- name: "Update tables of contents"
34
43
run: |
@@ -37,3 +46,4 @@ runs:
46
47
48
49
+ WIKI_TOC_HEADER: ${{ inputs.toc_header }}
0 commit comments