Skip to content

Commit 329caed

Browse files
committedNov 12, 2022
chore: postinstall for dependabot template-oss PR
1 parent 72f6e39 commit 329caed

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed
 

‎.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ jobs:
7777
const comments = await github.paginate(github.rest.issues.listComments, issue)
7878
let commentId = comments?.find(c => c.user.login === 'github-actions[bot]' && c.body.startsWith(body))?.id
7979
80-
body += `Release workflow run: ${workflow.html_url}\n\n#### Force CI to Rerun for This Release\n\n`
80+
body += `Release workflow run: ${workflow.html_url}\n\n#### Force CI to Update This Release\n\n`
8181
body += `This PR will be updated and CI will run for every non-\`chore:\` commit that is pushed to \`main\`. `
82-
body += `To force CI to rerun, run this command:\n\n`
82+
body += `To force CI to update this PR, run this command:\n\n`
8383
body += `\`\`\`\ngh workflow run release.yml -r ${REF_NAME}\n\`\`\``
8484
8585
if (commentId) {
@@ -174,7 +174,7 @@ jobs:
174174
RELEASE_COMMENT_ID: ${{ needs.release.outputs.comment-id }}
175175
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
176176
run: |
177-
npm exec --offline -- template-oss-release-manager
177+
npm exec --offline -- template-oss-release-manager --lockfile=false
178178
npm run rp-pull-request --ignore-scripts --if-present
179179
- name: Commit
180180
id: commit

‎SECURITY.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
<!-- This file is automatically added by @npmcli/template-oss. Do not edit. -->
22

3-
Please send vulnerability reports through [hackerone](https://hackerone.com/github).
3+
GitHub takes the security of our software products and services seriously, including the open source code repositories managed through our GitHub organizations, such as [GitHub](https://github.com/GitHub).
4+
5+
If you believe you have found a security vulnerability in this GitHub-owned open source repository, you can report it to us in one of two ways.
6+
7+
If the vulnerability you have found is *not* [in scope for the GitHub Bug Bounty Program](https://bounty.github.com/#scope) or if you do not wish to be considered for a bounty reward, please report the issue to us directly using [private vulnerability reporting](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability).
8+
9+
If the vulnerability you have found is [in scope for the GitHub Bug Bounty Program](https://bounty.github.com/#scope) and you would like for your finding to be considered for a bounty reward, please submit the vulnerability to us through [HackerOne](https://hackerone.com/github) in order to be eligible to receive a bounty award.
10+
11+
**Please do not report security vulnerabilities through public GitHub issues, discussions, or pull requests.**
12+
13+
Thanks for helping make GitHub safe for everyone.
14+

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
"templateOSS": {
5757
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
58-
"version": "4.8.0",
58+
"version": "4.10.0",
5959
"content": "scripts/template-oss",
6060
"engines": ">=10",
6161
"distPaths": [

0 commit comments

Comments
 (0)
Please sign in to comment.