Skip to content

Commit bffab39

Browse files
Comment out optional parameters in main.yml
1 parent c73743f commit bffab39

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,35 +16,35 @@ jobs:
1616
# Discord webhook endpoint. If not set, env.DISCORD_WEBHOOK will be used.
1717
webhook: ${{ secrets.DISCORD_WEBHOOK }}
1818
# Job status. Should be bound to job.status. Default to success.
19-
status: # optional, default is ${{ job.status }}
19+
#status: # optional, default is ${{ job.status }}
2020
# Deprecated. Job name included in message title. Same as title input.
21-
job: # optional
21+
#job: # optional
2222
# Content. Shown as an message outside of the embed. See [Mention to user/role](#mention-to-user-role)
23-
content: # optional
23+
#content: # optional
2424
# String included in embed title. Overrides job input.
25-
title: # optional, default is ${{ github.workflow }}
25+
#title: # optional, default is ${{ github.workflow }}
2626
# Description included in message
27-
description: # optional
27+
#description: # optional
2828
# Image attached to the message
29-
image: # optional
29+
#image: # optional
3030
# Overrides Discord embed color
31-
color: # optional
31+
#color: # optional
3232
# URL to jump when the title is clicked
33-
url: # optional
33+
#url: # optional
3434
# Overrides Discord webhook username
35-
username: # optional
35+
#username: # optional
3636
# Overrides Discord webhook avatar url
37-
avatar_url: # optional
37+
#avatar_url: # optional
3838
# This action won't make workflow failed by default.
39-
nofail: # optional, default is true
39+
#nofail: # optional, default is true
4040
# Suppress GitHub context fields
41-
nocontext: # optional, default is false
41+
#nocontext: # optional, default is false
4242
# Avoid appending job status to title
43-
noprefix: # optional, default is false
43+
#noprefix: # optional, default is false
4444
# Suppress detailed embed fields
45-
nodetail: # optional, default is false
45+
#nodetail: # optional, default is false
4646
# Avoid appending timestamp
47-
notimestamp: # optional, default is false
47+
#notimestamp: # optional, default is false
4848
# Suppress error which raised when webhook is not set
49-
ack_no_webhook: # optional, default is false
49+
#ack_no_webhook: # optional, default is false
5050

0 commit comments

Comments
 (0)