Skip to content

Commit 86f5396

Browse files
committed
chore(codeowners): exclude dependabot pr's
1 parent d264355 commit 86f5396

File tree

5 files changed

+16
-25
lines changed

5 files changed

+16
-25
lines changed

.github/dependabot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
4-
directory: "/"
3+
- package-ecosystem: npm
4+
directory: /
55
schedule:
6-
interval: "weekly"
6+
interval: weekly
77
labels:
88
- automerge

.github/workflows/build.yaml

+5-13
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,11 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- name: Set Node version
18-
run: echo "NODE_VERSION=$(cat .nvmrc)" > $GITHUB_ENV
19-
- name: Set up Node
20-
uses: actions/setup-node@v1
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
2118
with:
22-
node-version: ${{ env.NODE_VERSION }}
23-
- name: Set up cache
24-
uses: actions/cache@v2
25-
with:
26-
path: ~/.npm
27-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
28-
restore-keys: ${{ runner.os }}-node-
19+
node-version-file: .nvmrc
20+
cache: npm
2921
- name: Install dependencies
3022
run: npm install
3123
- name: Run linters
@@ -44,7 +36,7 @@ jobs:
4436
runs-on: ubuntu-latest
4537
if: github.ref == 'refs/heads/main'
4638
steps:
47-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4840
- name: Bump version
4941
uses: TriPSs/conventional-changelog-action@v3
5042
id: version

.github/workflows/publish.yaml

+4-6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ jobs:
1212
publish:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v1
16-
- name: Set Node version
17-
run: echo "NODE_VERSION=$(cat .nvmrc)" > $GITHUB_ENV
18-
- name: Set up Node
19-
uses: actions/setup-node@v1
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
2017
with:
21-
node-version: ${{ env.NODE_VERSION }}
18+
node-version-file: .nvmrc
19+
cache: npm
2220
- run: npm install
2321
- run: npm run build
2422
- uses: JS-DevTools/npm-publish@v1

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.14.0
1+
v18.12.1

CODEOWNERS

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2-
* @ndustrialio/paas-team
1+
* @ndustrialio/paas-team
2+
# Exclude dependabot PR's
3+
package*.json

0 commit comments

Comments
 (0)