Skip to content

fix(lock-closed): update policyUrl in bundle.js #80

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions github-actions/lock-closed/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: 'Lock Closed Issues'
description: 'Locks issues that are both closed and inactive'
author: 'Angular'
inputs:
github-token:
description: 'Github access token'
lock-bot-token:
description: 'A private key for the Lock Bot GitHub app'
required: true
locks-per-execution:
description: 'Maximum number of issue locks per action execution'
Expand Down
2 changes: 1 addition & 1 deletion github-actions/lock-closed/lib/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -26096,7 +26096,7 @@ async function run() {
// Fixed amount of days a closed issue must be inactive before being locked
const days = 30;
// Standardized Angular Team message for locking issues
const policyUrl = 'https://github.com/angular/angular/blob/67d80f/docs/GITHUB_PROCESS.md#conversation-locking';
const policyUrl = 'https://github.com/angular/angular/blob/8f24bc9443b3872fe095d9f7f77b308a361a13b4/docs/GITHUB_PROCESS.md#conversation-locking';
const message = 'This issue has been automatically locked due to inactivity.\n' +
'Please file a new issue if you are encountering a similar or related problem.\n\n' +
`Read more about our [automatic conversation locking policy](${policyUrl}).\n\n` +
Expand Down
2 changes: 1 addition & 1 deletion github-actions/lock-closed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"description": "Locks issues that are both closed and inactive",
"main": "lib/main.js",
"main": "lib/bundle.js",
"scripts": {
"build": "rollup --config"
},
Expand Down