You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#This action is centrally managed in https://github.com/asyncapi/.github/
2
+
#Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo
3
+
4
+
#Purpose of this action is to update npm package in libraries that use it. It is like dependabot for asyncapi npm modules only.
5
+
#It runs in a repo after merge of release commit and searches for other packages that use released package. Every found package gets updated with lates version
6
+
7
+
name: Bump package version in dependent repos - if Node project
8
+
9
+
on:
10
+
#It cannot run on release event as when release is created then version is not yet bumped in package.json
11
+
#This means we cannot extract easily latest version and have a risk that package is not yet on npm
12
+
push:
13
+
branches:
14
+
- master
15
+
16
+
jobs:
17
+
bump:
18
+
runs-on: ubuntu-latest
19
+
steps:
20
+
- name: Checkout repo
21
+
uses: actions/checkout@v2
22
+
- name: Check if Node.js project and has package.json
0 commit comments