diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2019-08-19 09:46:55 +0900 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2019-08-19 09:47:05 +0900 |
commit | 4c13368972366507b741be60602f314b85861f52 (patch) | |
tree | feb672be389cdb238f11ff2a4550808a3aa288ba /appveyor.yml | |
parent | d106f082915cbab454d5a7dc3661cea5136f42cf (diff) | |
download | ruby-4c13368972366507b741be60602f314b85861f52.tar.gz |
Make AppVeyor notification colors consistent
It was using the same one as original AppVeyor's notification, but it's
just inconsistent with others like Travis and GitHub Actions.
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index f7347338dd..e64a2c67cf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -135,7 +135,7 @@ notifications: "title_link": "{{buildUrl}}", "fallback": "AppVeyor Build {{projectName}} {{buildVersion}} {{status}}", "text": "Commit <{{commitUrl}}|{{commitId}}> by {{commitAuthor}} on {{commitDate}}: _{{commitMessage}}_", - "color": "{{#passed}}#44ee44{{/passed}}{{#failed}}#ee4444{{/failed}}" + "color": "{{#passed}}good{{/passed}}{{#failed}}danger{{/failed}}" } ], "channel": "#alerts" @@ -157,7 +157,7 @@ notifications: "title_link": "{{buildUrl}}", "fallback": "AppVeyor Build {{projectName}} {{buildVersion}} {{status}}", "text": "Commit <{{commitUrl}}|{{commitId}}> by {{commitAuthor}} on {{commitDate}}: _{{commitMessage}}_", - "color": "{{#passed}}#44ee44{{/passed}}{{#failed}}#ee4444{{/failed}}" + "color": "{{#passed}}good{{/passed}}{{#failed}}danger{{/failed}}" } ], "channel": "#commits" |