Skip to content

Commit fc2eb3a

Browse files
authored
Bugfix/dependabot init (#29)
1 parent 2781c7d commit fc2eb3a

File tree

4 files changed

+35
-6
lines changed

4 files changed

+35
-6
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'npm' # See documentation for possible values
4+
directory: '/' # Location of package manifests
5+
rebase-strategy: auto
6+
commit-message:
7+
prefix: 'fix'
8+
include: scope
9+
schedule:
10+
interval: 'weekly'
11+
12+
- package-ecosystem: 'github-actions'
13+
directory: '/'
14+
rebase-strategy: auto
15+
commit-message:
16+
prefix: 'fix'
17+
include: scope
18+
schedule:
19+
interval: 'weekly'

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ jobs:
5151
env:
5252
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5353

54+
publish_release:
55+
runs-on: ubuntu-latest
56+
needs: [build, create_release]
57+
steps:
58+
- name: Setup awesome-ci
59+
uses: fullstack-devops/awesome-ci-action@main
60+
5461
- name: Publish release
5562
run: awesome-ci release publish --release-id "${{ needs.create_release.outputs.release-id }}"
5663
env:

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[![npm version](https://badge.fury.io/js/%40fullstack-devops%2Fng-mat-components.svg)](https://www.npmjs.com/package/@fullstack-devops/ng-mat-components)
2+
[![Build and Release Package](https://github.com/fullstack-devops/ng-mat-components/actions/workflows/release.yml/badge.svg)](https://github.com/fullstack-devops/ng-mat-components/actions/workflows/release.yml)
3+
14
# ng-mat-components
25

36
Components for @angular/material

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
},
4141
"devDependencies": {
4242
"@angular-devkit/build-angular": "^14.2.10",
43-
"@angular-eslint/builder": "14.4.0",
44-
"@angular-eslint/eslint-plugin": "14.4.0",
45-
"@angular-eslint/eslint-plugin-template": "14.4.0",
46-
"@angular-eslint/schematics": "14.4.0",
47-
"@angular-eslint/template-parser": "14.4.0",
43+
"@angular-eslint/builder": "^14.4.0",
44+
"@angular-eslint/eslint-plugin": "^14.4.0",
45+
"@angular-eslint/eslint-plugin-template": "^14.4.0",
46+
"@angular-eslint/schematics": "^14.4.0",
47+
"@angular-eslint/template-parser": "^14.4.0",
4848
"@angular/cli": "^14.2.10",
4949
"@angular/compiler-cli": "^14.2.12",
5050
"@types/jasmine": "~3.10.0",
@@ -65,4 +65,4 @@
6565
"sass": "^1.57.1",
6666
"typescript": "~4.8.4"
6767
}
68-
}
68+
}

0 commit comments

Comments
 (0)