diff --git a/github-actions/lock-closed/action.yml b/github-actions/lock-closed/action.yml index 53029c06b..7bf8b52c4 100644 --- a/github-actions/lock-closed/action.yml +++ b/github-actions/lock-closed/action.yml @@ -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' diff --git a/github-actions/lock-closed/lib/bundle.js b/github-actions/lock-closed/lib/bundle.js index 90c5100f7..cc7a2804c 100644 --- a/github-actions/lock-closed/lib/bundle.js +++ b/github-actions/lock-closed/lib/bundle.js @@ -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` + diff --git a/github-actions/lock-closed/package.json b/github-actions/lock-closed/package.json index e1ac7e4f8..595739f2f 100644 --- a/github-actions/lock-closed/package.json +++ b/github-actions/lock-closed/package.json @@ -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" },