Skip to content

Commit 36dafbd

Browse files
authored
Update vulnerability dashboard deploy action & update github maintainers in custom.js (#17602)
Changes: - Updated the deploy-vulnerability-dashboard workflow to use the correct variables for the Heroku steps. - Added GitHub maintainers to `website/config/custom.js` for the GitHub workflows related to the vulnerability dashboard.
1 parent 452d6b8 commit 36dafbd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy-vulnerability-dashboard.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
# Configure our access credentials for the Heroku CLI
2323
- uses: akhileshns/heroku-deploy@79ef2ae4ff9b897010907016b268fd0f88561820 # v3.6.8
2424
with:
25-
heroku_api_key: ${{secrets.HEROKU_API_TOKEN_FOR_DEPLOYMENT}}
25+
heroku_api_key: ${{secrets.HEROKU_API_TOKEN_FOR_BOT_USER}}
2626
heroku_app_name: "" # this has to be blank or it doesn't work
27-
heroku_email: ${{secrets.HEROKU_EMAIL_FOR_DEPLOYMENT}}
27+
heroku_email: ${{secrets.HEROKU_EMAIL_FOR_BOT_USER}}
2828
justlogin: true
2929
- run: heroku auth:whoami
3030

website/config/custom.js

+2
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@ module.exports.custom = {
232232
// Github workflows
233233
'.github/workflows/deploy-fleet-website.yml': ['eashaw','mikermcneil'],// (website deploy script)
234234
'.github/workflows/test-website.yml': ['eashaw','mikermcneil'],//« website CI test script
235+
'.github/workflows/deploy-vulnerability-dashboard.yml': ['eashaw','mikermcneil'],// (vulnerabiltiy dashboard deploy script)
236+
'.github/workflows/test-vulnerability-dashboard-changes.yml': ['eashaw','mikermcneil'],//« vulnerabiltiy dashboard CI test script
235237
'.github/workflows': ['lukeheath', 'mikermcneil'],//« CI/CD workflows & misc GitHub Actions. Note that some are also addressed more specifically below in relevant sections)
236238

237239
// Repo automation and change control settings

0 commit comments

Comments
 (0)