Skip to content

Commit 1ed65a5

Browse files
committed
chore: postinstall for dependabot template-oss PR
1 parent 2f7706d commit 1ed65a5

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/actions/create-check/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
with:
2626
result-encoding: string
2727
script: |
28-
const { repo: { owner, repo}, runId, serverUrl } = context
28+
const { repo: { owner, repo}, runId, serverUrl } = context
2929
const { JOB_NAME, SHA } = process.env
3030
3131
const job = await github.rest.actions.listJobsForWorkflowRun({

.github/actions/install-latest-npm/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
MATCH=$SPEC
4545
echo "Found compatible version: npm@$MATCH"
4646
break
47-
fi
47+
fi
4848
done
4949
5050
if [ -z $MATCH ]; then

.github/workflows/ci-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: npm run postlint --ignore-scripts
6565
- name: Conclude Check
6666
uses: LouisBrunner/[email protected]
67-
if: always()
67+
if: steps.create-check.outputs.check-id && always()
6868
with:
6969
token: ${{ secrets.GITHUB_TOKEN }}
7070
conclusion: ${{ job.status }}
@@ -125,7 +125,7 @@ jobs:
125125
run: npm test --ignore-scripts
126126
- name: Conclude Check
127127
uses: LouisBrunner/[email protected]
128-
if: always()
128+
if: steps.create-check.outputs.check-id && always()
129129
with:
130130
token: ${{ secrets.GITHUB_TOKEN }}
131131
conclusion: ${{ job.status }}

.gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
# ignore everything in the root
44
/*
5-
# transient test directories
6-
tap-testdir*/
75

8-
# keep these
96
!**/.gitignore
107
!/.commitlintrc.js
8+
!/.git-blame-ignore-revs
119
!/.github/
1210
!/.gitignore
1311
!/.npmrc
12+
!/.prettierignore
13+
!/.prettierrc.js
1414
!/.release-please-manifest.json
1515
!/bin/
1616
!/CHANGELOG*
@@ -30,3 +30,4 @@ tap-testdir*/
3030
!/tap-snapshots/
3131
!/test/
3232
!/tsconfig.json
33+
tap-testdir*/

SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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).
44

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.
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.
66

77
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 through [[email protected]](mailto:[email protected]).
88

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"lint": "echo linting disabled",
99
"postlint": "template-oss-check",
1010
"template-oss-apply": "template-oss-apply --force",
11-
"lintfix": "npm run lint -- --fix",
1211
"snap": "tap test/ --100 --timeout=30",
1312
"posttest": "npm run lint"
1413
},
@@ -33,6 +32,6 @@
3332
"templateOSS": {
3433
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
3534
"content": "./scripts/template-oss",
36-
"version": "4.22.0"
35+
"version": "4.23.1"
3736
}
3837
}

0 commit comments

Comments
 (0)