@asyncapi/converter 0.4.3 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/.github/workflows/add-good-first-issue-labels.yml +68 -0
  2. package/.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml +54 -0
  3. package/.github/workflows/automerge-for-humans-merging.yml +32 -0
  4. package/.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml +35 -0
  5. package/.github/workflows/automerge-orphans.yml +63 -0
  6. package/.github/workflows/automerge.yml +24 -13
  7. package/.github/workflows/autoupdate.yml +28 -0
  8. package/.github/workflows/bump.yml +13 -13
  9. package/.github/workflows/help-command.yml +43 -0
  10. package/.github/workflows/if-go-pr-testing.yml +58 -0
  11. package/.github/workflows/if-nodejs-pr-testing.yml +54 -0
  12. package/.github/workflows/if-nodejs-release.yml +80 -0
  13. package/.github/workflows/if-nodejs-version-bump.yml +48 -0
  14. package/.github/workflows/issues-prs-notifications.yml +72 -0
  15. package/.github/workflows/lint-pr-title.yml +22 -0
  16. package/.github/workflows/release-announcements.yml +76 -0
  17. package/.github/workflows/sentiment-analysis.yml +3 -0
  18. package/.github/workflows/stale-issues-prs.yml +24 -9
  19. package/.github/workflows/welcome-first-time-contrib.yml +68 -10
  20. package/CODEOWNERS +8 -0
  21. package/README.md +2 -2
  22. package/cli.js +1 -1
  23. package/lib/index.js +71 -53
  24. package/package.json +13 -13
  25. package/test/index.js +99 -16
  26. package/test/input/1.2.0/gitter-streaming.yml +3 -2
  27. package/test/input/2.0.0/streetlights.yml +113 -0
  28. package/test/input/2.1.0/streetlights.yml +113 -0
  29. package/test/output/2.0.0/gitter-streaming.yml +2 -1
  30. package/test/output/2.0.0-rc1/gitter-streaming.yml +2 -1
  31. package/test/output/2.0.0-rc2/gitter-streaming.yml +2 -1
  32. package/test/output/2.1.0/streetlights.yml +113 -0
  33. package/test/output/2.2.0/streetlights.yml +113 -0
  34. package/.github/workflows/pull-request-testing.yml +0 -24
  35. package/.github/workflows/release.yml +0 -65
@@ -0,0 +1,68 @@
1
+ #This workflow 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 workflow is to enable anyone to label issue with 'Good First Issue' and 'area/*' with a single command.
5
+ name: Add 'Good First Issue' and 'area/*' labels # if proper comment added
6
+
7
+ on:
8
+ issue_comment:
9
+ types:
10
+ - created
11
+
12
+ jobs:
13
+ add-labels:
14
+ if: github.event.issue && github.event.issue.state != 'closed'
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Add label
18
+ if: contains(github.event.comment.body, '/good-first-issue') || contains(github.event.comment.body, '/gfi' )
19
+ uses: actions/github-script@v5
20
+ with:
21
+ github-token: ${{ secrets.GH_TOKEN }}
22
+ script: |
23
+ const areas = ['javascript', 'typescript', 'java' , 'go', 'docs', 'ci-cd', 'design'];
24
+ const values = context.payload.comment.body.split(" ");
25
+ switch(values[1]){
26
+ case 'ts':
27
+ values[1] = 'typescript';
28
+ break;
29
+ case 'js':
30
+ values[1] = 'javascript';
31
+ case 'markdown':
32
+ values[1] = 'docs';
33
+ }
34
+ if(values.length != 2 || !areas.includes(values[1])){
35
+ const message = `Hey @${context.payload.sender.login}, something is wrong with your command please use \`/help\` for help.`
36
+
37
+ await github.rest.issues.createComment({
38
+ issue_number: context.issue.number,
39
+ owner: context.repo.owner,
40
+ repo: context.repo.repo,
41
+ body: message
42
+ })
43
+ } else {
44
+
45
+ //remove complexity and areas if there are any before adding new labels;
46
+ const currentLabels = (await github.rest.issues.listLabelsOnIssue({
47
+ issue_number: context.issue.number,
48
+ owner: context.repo.owner,
49
+ repo: context.repo.repo,
50
+ })).data.map(label => label.name);
51
+
52
+ const shouldBeRemoved = currentLabels.filter(label => (label.startsWith('area/') && !label.endsWith(values[1])));
53
+ shouldBeRemoved.forEach(label => {
54
+ github.rest.issues.deleteLabel({
55
+ owner: context.repo.owner,
56
+ repo: context.repo.repo,
57
+ name: label,
58
+ });
59
+ });
60
+
61
+ //add new labels
62
+ github.rest.issues.addLabels({
63
+ issue_number: context.issue.number,
64
+ owner: context.repo.owner,
65
+ repo: context.repo.repo,
66
+ labels: ['good first issue', `area/${values[1]}`]
67
+ });
68
+ }
@@ -0,0 +1,54 @@
1
+ #This workflow 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 workflow is to enable anyone to label PR with `ready-to-merge` and `do-not-merge` labels to get stuff merged or blocked from merging
5
+ name: Add ready-to-merge or do-not-merge label # if proper comment added
6
+
7
+ on:
8
+ issue_comment:
9
+ types:
10
+ - created
11
+
12
+ jobs:
13
+ parse-comment-and-add-ready: # for handling cases when you want to mark as ready to merge
14
+ if: github.event.issue.pull_request && github.event.issue.state != 'closed' && github.actor != 'asyncapi-bot'
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Check if PR is draft # such info is not available in the context of issue_comment event
18
+ uses: actions/github-script@v5
19
+ id: checkDraft
20
+ with:
21
+ result-encoding: string
22
+ script: |
23
+ const prDetailsUrl = context.payload.issue.pull_request.url;
24
+ const response = await github.request(prDetailsUrl);
25
+ return response.data.draft;
26
+ - name: Add label
27
+ if: steps.checkDraft.outputs.result == 'false' && (contains(github.event.comment.body, '/ready-to-merge') || contains(github.event.comment.body, '/rtm' ))
28
+ uses: actions/github-script@v5
29
+ with:
30
+ github-token: ${{ secrets.GH_TOKEN }}
31
+ script: |
32
+ github.rest.issues.addLabels({
33
+ issue_number: context.issue.number,
34
+ owner: context.repo.owner,
35
+ repo: context.repo.repo,
36
+ labels: ['ready-to-merge']
37
+ })
38
+
39
+ parse-comment-and-add-block: # for handling cases when you want to mark as do-not-merge
40
+ if: github.event.issue.pull_request && github.event.issue.state != 'closed' && github.actor != 'asyncapi-bot'
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - name: Add label
44
+ if: contains(github.event.comment.body, '/do-not-merge') || contains(github.event.comment.body, '/dnm' )
45
+ uses: actions/github-script@v5
46
+ with:
47
+ github-token: ${{ secrets.GH_TOKEN }}
48
+ script: |
49
+ github.rest.issues.addLabels({
50
+ issue_number: context.issue.number,
51
+ owner: context.repo.owner,
52
+ repo: context.repo.repo,
53
+ labels: ['do-not-merge']
54
+ })
@@ -0,0 +1,32 @@
1
+ #This workflow 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 workflow is to allow people to merge PR without a need of maintainer doing it. If all checks are in place (including maintainers approval) - JUST MERGE IT!
5
+ name: Automerge For Humans
6
+
7
+ on:
8
+ pull_request_target:
9
+ types:
10
+ - labeled
11
+ - unlabeled
12
+ - synchronize
13
+ - opened
14
+ - edited
15
+ - ready_for_review
16
+ - reopened
17
+ - unlocked
18
+
19
+ jobs:
20
+ automerge-for-humans:
21
+ if: github.event.pull_request.draft == false && (github.event.pull_request.user.login != 'asyncapi-bot' || github.event.pull_request.user.login != 'dependabot[bot]' || github.event.pull_request.user.login != 'dependabot-preview[bot]') #it runs only if PR actor is not a bot, at least not a bot that we know
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - name: Automerge PR
25
+ uses: pascalgn/automerge-action@v0.14.3
26
+ env:
27
+ GITHUB_TOKEN: "${{ secrets.GH_TOKEN }}"
28
+ MERGE_LABELS: "!do-not-merge,ready-to-merge"
29
+ MERGE_METHOD: "squash"
30
+ MERGE_COMMIT_MESSAGE: "pull-request-title"
31
+ MERGE_RETRIES: "20"
32
+ MERGE_RETRY_SLEEP: "30000"
@@ -0,0 +1,35 @@
1
+ #This workflow 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
+ # Defence from evil contributor that after adding `ready-to-merge` all suddenly makes evil commit or evil change in PR title
5
+ # Label is removed once above action is detected
6
+ name: Remove ready-to-merge label
7
+
8
+ on:
9
+ pull_request_target:
10
+ types:
11
+ - synchronize
12
+ - edited
13
+
14
+ jobs:
15
+ remove-ready-label:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Remove label
19
+ uses: actions/github-script@v5
20
+ with:
21
+ github-token: ${{ secrets.GH_TOKEN }}
22
+ script: |
23
+ const labelToRemove = 'ready-to-merge';
24
+ const labels = context.payload.pull_request.labels;
25
+
26
+ const isLabelPresent = labels.some(label => label.name === labelToRemove)
27
+
28
+ if(!isLabelPresent) return;
29
+
30
+ github.rest.issues.removeLabel({
31
+ issue_number: context.issue.number,
32
+ owner: context.repo.owner,
33
+ repo: context.repo.repo,
34
+ name: labelToRemove
35
+ })
@@ -0,0 +1,63 @@
1
+ #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
+ name: 'Notify on failing automerge'
5
+
6
+ on:
7
+ schedule:
8
+ - cron: "0 0 * * *"
9
+
10
+ jobs:
11
+ identify-orphans:
12
+ name: Find orphans and notify
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Get list of orphans
16
+ uses: actions/github-script@v3
17
+ id: orphans
18
+ with:
19
+ github-token: ${{ secrets.GITHUB_TOKEN }}
20
+ script: |
21
+ const query = `query($owner:String!, $name:String!) {
22
+ repository(owner:$owner, name:$name){
23
+ pullRequests(first: 100, states: OPEN){
24
+ nodes{
25
+ title
26
+ url
27
+ author {
28
+ resourcePath
29
+ }
30
+ }
31
+ }
32
+ }
33
+ }`;
34
+ const variables = {
35
+ owner: context.repo.owner,
36
+ name: context.repo.repo
37
+ };
38
+ const { repository: { pullRequests: { nodes } } } = await github.graphql(query, variables);
39
+
40
+ let orphans = nodes.filter( (pr) => pr.author.resourcePath === '/asyncapi-bot' || pr.author.resourcePath === '/apps/dependabot')
41
+
42
+ if (orphans.length) {
43
+ core.setOutput('found', 'true');
44
+ //Yes, this is very naive approach to assume there is just one PR causing issues, there can be a case that more PRs are affected the same day
45
+ //The thing is that handling multiple PRs will increase a complexity in this PR that in my opinion we should avoid
46
+ //The other PRs will be reported the next day the action runs, or person that checks first url will notice the other ones
47
+ core.setOutput('url', orphans[0].url);
48
+ core.setOutput('title', orphans[0].title);
49
+ }
50
+ - if: steps.orphans.outputs.found == 'true'
51
+ name: Convert markdown to slack markdown
52
+ uses: LoveToKnow/slackify-markdown-action@v1.0.0
53
+ id: issuemarkdown
54
+ with:
55
+ text: "-> [${{steps.orphans.outputs.title}}](${{steps.orphans.outputs.url}})"
56
+ - if: steps.orphans.outputs.found == 'true'
57
+ name: Send info about orphan to slack
58
+ uses: rtCamp/action-slack-notify@v2
59
+ env:
60
+ SLACK_WEBHOOK: ${{secrets.SLACK_GITHUB_NEWISSUEPR}}
61
+ SLACK_TITLE: 🚨 Not merged PR that should be automerged 🚨
62
+ SLACK_MESSAGE: ${{steps.issuemarkdown.outputs.text}}
63
+ MSG_MINIMAL: true
@@ -1,7 +1,10 @@
1
+ # 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
+
1
4
  name: Automerge release bump PR
2
5
 
3
6
  on:
4
- pull_request:
7
+ pull_request_target:
5
8
  types:
6
9
  - labeled
7
10
  - unlabeled
@@ -14,35 +17,43 @@ on:
14
17
  pull_request_review:
15
18
  types:
16
19
  - submitted
17
- check_suite:
18
- types:
19
- - completed
20
- status: {}
21
-
20
+
22
21
  jobs:
23
22
 
24
23
  autoapprove:
25
- if: github.event.pull_request.draft == false
24
+ if: github.event.pull_request.draft == false && (github.event.pull_request.user.login == 'asyncapi-bot' || github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'dependabot-preview[bot]') && !contains(github.event.pull_request.labels.*.name, 'released')
26
25
  runs-on: ubuntu-latest
27
26
  steps:
28
27
  - name: Autoapproving
29
- uses: hmarr/auto-approve-action@v2.0.0
30
- if: github.actor == 'asyncapi-bot' || github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
28
+ uses: hmarr/auto-approve-action@v2
31
29
  with:
32
30
  github-token: "${{ secrets.GITHUB_TOKEN }}"
33
31
 
32
+ - name: Label autoapproved
33
+ uses: actions/github-script@v5
34
+ with:
35
+ github-token: ${{ secrets.GH_TOKEN }}
36
+ script: |
37
+ github.rest.issues.addLabels({
38
+ issue_number: context.issue.number,
39
+ owner: context.repo.owner,
40
+ repo: context.repo.repo,
41
+ labels: ['autoapproved']
42
+ })
43
+
44
+
34
45
  automerge:
35
46
  needs: [autoapprove]
47
+ if: github.event.pull_request.user.login == 'asyncapi-bot' || github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'dependabot-preview[bot]'
36
48
  runs-on: ubuntu-latest
37
49
  steps:
38
50
  - name: Automerging
39
- uses: pascalgn/automerge-action@v0.7.5
40
- if: github.actor == 'asyncapi-bot' || github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
51
+ uses: pascalgn/automerge-action@v0.13.0
41
52
  env:
42
53
  GITHUB_TOKEN: "${{ secrets.GH_TOKEN }}"
43
54
  GITHUB_LOGIN: asyncapi-bot
44
55
  MERGE_LABELS: ""
45
56
  MERGE_METHOD: "squash"
46
57
  MERGE_COMMIT_MESSAGE: "pull-request-title"
47
- MERGE_RETRIES: "10"
48
- MERGE_RETRY_SLEEP: "10000"
58
+ MERGE_RETRIES: "20"
59
+ MERGE_RETRY_SLEEP: "30000"
@@ -0,0 +1,28 @@
1
+ #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
+ #This workflow is designed to work with:
5
+ # - autoapprove and automerge workflows for dependabot and asyncapibot.
6
+ # - special release branches that we from time to time create in upstream repos. If we open up PRs for them from the very beginning of the release, the release branch will constantly update with new things from the destination branch they are opened against
7
+
8
+ # It uses GitHub Action that auto-updates pull requests branches, whenever changes are pushed to their destination branch.
9
+ #Autoupdating to latest destination branch works only in the context of upstream repo and not forks
10
+
11
+ name: autoupdate
12
+
13
+ on:
14
+ push: {}
15
+
16
+ jobs:
17
+
18
+ autoupdate:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Autoupdating
22
+ uses: docker://chinthakagodawita/autoupdate-action:v1
23
+ env:
24
+ GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
25
+ PR_FILTER: "labelled"
26
+ PR_LABELS: "autoapproved"
27
+ PR_READY_STATE: "ready_for_review"
28
+ MERGE_CONFLICT_ACTION: "ignore"
@@ -1,4 +1,10 @@
1
- name: Bump package version in dependent repos
1
+ #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
2
8
 
3
9
  on:
4
10
  #It cannot run on release event as when release is created then version is not yet bumped in package.json
@@ -13,20 +19,14 @@ jobs:
13
19
  steps:
14
20
  - name: Checkout repo
15
21
  uses: actions/checkout@v2
16
- - name: Get version from package.json before release step
17
- id: extractver
18
- run: echo "::set-output name=version::$(npm run get-version --silent)"
19
- - name: Get name of package from package.json
20
- id: extractname
21
- run: echo "::set-output name=packname::$(npm run get-name --silent)"
22
- - if: startsWith(github.event.commits[0].message, 'chore(release):')
22
+ - name: Check if Node.js project and has package.json
23
+ id: packagejson
24
+ run: test -e ./package.json && echo "::set-output name=exists::true" || echo "::set-output name=exists::false"
25
+ - if: steps.packagejson.outputs.exists == 'true' && startsWith(github.event.commits[0].message, 'chore(release):')
23
26
  name: Bumping latest version of this package in other repositories
24
- uses: derberg/org-projects-dependency-manager@v1
27
+ uses: derberg/npm-dependency-manager-for-your-github-org@v3
25
28
  with:
26
29
  github_token: ${{ secrets.GH_TOKEN }}
27
30
  committer_username: asyncapi-bot
28
31
  committer_email: info@asyncapi.io
29
- #This is commit message and PR title for repos where this package is in dependencies
30
- commit_message_prod: 'fix: update ${{ steps.extractname.outputs.packname }} to ${{ steps.extractver.outputs.version }} version'
31
- #This is commit message and PR title for repos where this package is in devDependencies
32
- commit_message_dev: 'chore: update ${{ steps.extractname.outputs.packname }} to ${{ steps.extractver.outputs.version }} version'
32
+ repos_to_ignore: html-template #this is temporary until react component releases 1.0, then it can be removed
@@ -0,0 +1,43 @@
1
+ #This workflow 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
+ name: Create help comment
5
+
6
+ on:
7
+ issue_comment:
8
+ types:
9
+ - created
10
+
11
+ jobs:
12
+ create_help_comment_pr:
13
+ if: github.event.issue.pull_request && contains(github.event.comment.body, '/help')
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions-ecosystem/action-create-comment@v1
17
+ with:
18
+ github_token: ${{ secrets.GH_TOKEN }}
19
+ body: |
20
+ Hello, @${{ github.actor }}! 👋🏼
21
+
22
+ I'm Genie from the magic lamp. Looks like somebody needs a hand! 🆘
23
+
24
+ At the moment the following comments are supported in pull requests:
25
+
26
+ - `/ready-to-merge` or `/rtm` - This comment will trigger automerge of PR in case all required checks are green, approvals in place and do-not-merge label is not added
27
+ - `/do-not-merge` or `/dnm` - This comment will block automerging even if all conditions are met and ready-to-merge label is added
28
+ create_help_comment_issue:
29
+ if: ${{ !github.event.issue.pull_request && contains(github.event.comment.body, '/help') }}
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions-ecosystem/action-create-comment@v1
33
+ with:
34
+ github_token: ${{ secrets.GH_TOKEN }}
35
+ body: |
36
+ Hello, @${{ github.actor }}! 👋🏼
37
+
38
+ I'm Genie from the magic lamp. Looks like somebody needs a hand! 🆘
39
+
40
+ At the moment the following comments are supported in issues:
41
+
42
+ - `/good-first-issue {js | ts | java | go | docs | design | ci-cd} ` or `/gfi {js | ts | java | go | docs | design | ci-cd} ` - label an issue as a `good first issue`.
43
+ example: `/gfi js` or `/good-first-issue ci-cd`
@@ -0,0 +1,58 @@
1
+ #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
+ #It does magic only if there is go.mod file in the root of the project
4
+ name: PR testing - if Go project
5
+
6
+ on:
7
+ pull_request:
8
+ types: [opened, reopened, synchronize, ready_for_review]
9
+
10
+ jobs:
11
+ lint:
12
+ if: github.event.pull_request.draft == false
13
+ name: lint
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v2
18
+ - name: Check if Go project and has go.mod
19
+ id: gomod
20
+ run: test -e ./go.mod && echo "::set-output name=exists::true" || echo "::set-output name=exists::false"
21
+ shell: bash
22
+ - if: steps.gomod.outputs.exists == 'true'
23
+ name: Setup Go
24
+ uses: actions/setup-go@v2.1.3
25
+ with:
26
+ go-version: 1.16
27
+ - if: steps.gomod.outputs.exists == 'true'
28
+ name: golangci-lint
29
+ uses: golangci/golangci-lint-action@v2 # golangci-lint version extracted from go.mod. `latest` if missing.
30
+ with:
31
+ skip-go-installation: true # we wanna control the version of Go in use
32
+
33
+ test:
34
+ if: github.event.pull_request.draft == false
35
+ name: ${{ matrix.os }}
36
+ runs-on: ${{ matrix.os }}
37
+ strategy:
38
+ matrix:
39
+ os: [ubuntu-latest, macos-latest, windows-latest]
40
+ steps:
41
+ - name: Checkout repository
42
+ uses: actions/checkout@v2
43
+ - name: Check if Go project and has go.mod
44
+ id: gomod
45
+ run: test -e ./go.mod && echo "::set-output name=exists::true" || echo "::set-output name=exists::false"
46
+ shell: bash
47
+ - if: steps.gomod.outputs.exists == 'true'
48
+ name: Setup Go
49
+ uses: actions/setup-go@v2.1.3
50
+ with:
51
+ go-version: 1.16
52
+ - if: steps.gomod.outputs.exists == 'true'
53
+ name: Build
54
+ run: go build -v ./...
55
+ - if: steps.gomod.outputs.exists == 'true'
56
+ name: Test
57
+ run: go test -v ./...
58
+
@@ -0,0 +1,54 @@
1
+ #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
+ #It does magic only if there is package.json file in the root of the project
4
+ name: PR testing - if Node project
5
+
6
+ on:
7
+ pull_request:
8
+ types: [opened, reopened, synchronize, ready_for_review]
9
+
10
+ jobs:
11
+ test:
12
+ if: github.event.pull_request.draft == false
13
+ name: ${{ matrix.os }}
14
+ runs-on: ${{ matrix.os }}
15
+ strategy:
16
+ matrix:
17
+ os: [ubuntu-latest, macos-latest, windows-latest]
18
+ steps:
19
+ - name: Set git to use LF #to once and for all finish neverending fight between Unix and Windows
20
+ run: |
21
+ git config --global core.autocrlf false
22
+ git config --global core.eol lf
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v2
25
+ - name: Check if Node.js project and has package.json
26
+ id: packagejson
27
+ run: test -e ./package.json && echo "::set-output name=exists::true" || echo "::set-output name=exists::false"
28
+ shell: bash
29
+ - if: steps.packagejson.outputs.exists == 'true'
30
+ name: Setup Node.js
31
+ uses: actions/setup-node@v2
32
+ with:
33
+ node-version: 14
34
+ cache: 'npm'
35
+ cache-dependency-path: '**/package-lock.json'
36
+ - if: steps.packagejson.outputs.exists == 'true'
37
+ name: Install dependencies
38
+ id: first-installation
39
+ run: npm install --loglevel verbose
40
+ continue-on-error: true
41
+ - if: steps.first-installation.outputs.status == 'failure' && steps.packagejson.outputs.exists == 'true'
42
+ name: Clear NPM cache and install deps again
43
+ run: |
44
+ npm cache clean --force
45
+ npm install --loglevel verbose
46
+ - if: steps.packagejson.outputs.exists == 'true'
47
+ name: Test
48
+ run: npm test
49
+ - if: steps.packagejson.outputs.exists == 'true'
50
+ name: Run linter
51
+ run: npm run lint
52
+ - if: steps.packagejson.outputs.exists == 'true'
53
+ name: Run release assets generation to make sure PR does not break it
54
+ run: npm run generate:assets
@@ -0,0 +1,80 @@
1
+ #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
+ #It does magic only if there is package.json file in the root of the project
4
+ name: Release - if Node project
5
+
6
+ on:
7
+ push:
8
+ branches:
9
+ - master
10
+ # below lines are not enough to have release supported for these branches
11
+ # make sure configuration of `semantic-release` package mentiones these branches
12
+ - next
13
+ - '**-release'
14
+
15
+ jobs:
16
+
17
+ test:
18
+ name: Test on ${{ matrix.os }}
19
+ runs-on: ${{ matrix.os }}
20
+ strategy:
21
+ matrix:
22
+ os: [ubuntu-latest, macos-latest, windows-latest]
23
+ steps:
24
+ - name: Set git to use LF #to once and for all finish neverending fight between Unix and Windows
25
+ run: |
26
+ git config --global core.autocrlf false
27
+ git config --global core.eol lf
28
+ - name: Checkout repository
29
+ uses: actions/checkout@v2
30
+ - name: Check if Node.js project and has package.json
31
+ id: packagejson
32
+ run: test -e ./package.json && echo "::set-output name=exists::true" || echo "::set-output name=exists::false"
33
+ shell: bash
34
+ - if: steps.packagejson.outputs.exists == 'true'
35
+ name: Setup Node.js
36
+ uses: actions/setup-node@v2
37
+ with:
38
+ node-version: 14
39
+ cache: 'npm'
40
+ cache-dependency-path: '**/package-lock.json'
41
+ - if: steps.packagejson.outputs.exists == 'true'
42
+ name: Install dependencies
43
+ run: npm install
44
+ - if: steps.packagejson.outputs.exists == 'true'
45
+ name: Run test
46
+ run: npm test
47
+
48
+ release:
49
+ needs: test
50
+ name: Publish to NPM and GitHub
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Set git to use LF #to once and for all finish neverending fight between Unix and Windows
54
+ run: |
55
+ git config --global core.autocrlf false
56
+ git config --global core.eol lf
57
+ - name: Checkout repository
58
+ uses: actions/checkout@v2
59
+ - name: Check if Node.js project and has package.json
60
+ id: packagejson
61
+ run: test -e ./package.json && echo "::set-output name=exists::true" || echo "::set-output name=exists::false"
62
+ - if: steps.packagejson.outputs.exists == 'true'
63
+ name: Setup Node.js
64
+ uses: actions/setup-node@v1
65
+ with:
66
+ node-version: 14
67
+ - if: steps.packagejson.outputs.exists == 'true'
68
+ name: Install dependencies
69
+ run: npm install
70
+ - if: steps.packagejson.outputs.exists == 'true'
71
+ name: Release to NPM and GitHub
72
+ id: release
73
+ env:
74
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
75
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
76
+ GIT_AUTHOR_NAME: asyncapi-bot
77
+ GIT_AUTHOR_EMAIL: info@asyncapi.io
78
+ GIT_COMMITTER_NAME: asyncapi-bot
79
+ GIT_COMMITTER_EMAIL: info@asyncapi.io
80
+ run: npm run release