From dcd24001c8cac3b0ec816b36d8826547c4fcef60 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Thu, 3 Aug 2023 09:27:27 +0200 Subject: [PATCH 1/3] fix: update @asyncapi/parser to 2.1.0 version (#219) --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 64eba75..7a66bdd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.0.2", "license": "Apache-2.0", "dependencies": { - "@asyncapi/parser": "^2.0.3", + "@asyncapi/parser": "^2.1.0", "@types/json-schema": "^7.0.11", "avsc": "^5.7.6" }, @@ -45,9 +45,9 @@ } }, "node_modules/@asyncapi/parser": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-2.0.3.tgz", - "integrity": "sha512-2gtIQOaCz8sR70JFREpg6UwgUBboC/26JcAGySkXY/f1ayjcfDoNLi4LsDvmu6G21qLrGN2lI83i8iLG1AzTAw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-2.1.0.tgz", + "integrity": "sha512-78jjN3eW4ZmgJEa6Ap15lofzADCeItO4wHcAY2Jod3qLB1xf1zFDZQdtm3VSHYLeLhwoC1A33bAtzEf7M5P2bg==", "dependencies": { "@asyncapi/specs": "^5.1.0", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", @@ -7931,9 +7931,9 @@ } }, "@asyncapi/parser": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-2.0.3.tgz", - "integrity": "sha512-2gtIQOaCz8sR70JFREpg6UwgUBboC/26JcAGySkXY/f1ayjcfDoNLi4LsDvmu6G21qLrGN2lI83i8iLG1AzTAw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-2.1.0.tgz", + "integrity": "sha512-78jjN3eW4ZmgJEa6Ap15lofzADCeItO4wHcAY2Jod3qLB1xf1zFDZQdtm3VSHYLeLhwoC1A33bAtzEf7M5P2bg==", "requires": { "@asyncapi/specs": "^5.1.0", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", diff --git a/package.json b/package.json index a74e819..c7bf8d5 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "README.md" ], "dependencies": { - "@asyncapi/parser": "^2.0.3", + "@asyncapi/parser": "^2.1.0", "@types/json-schema": "^7.0.11", "avsc": "^5.7.6" }, From 831c77510513e47d5849725ce6a5240d45fc1d80 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Thu, 3 Aug 2023 09:46:21 +0200 Subject: [PATCH 2/3] chore(release): v3.0.3 (#220) --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7a66bdd..20fd77a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@asyncapi/avro-schema-parser", - "version": "3.0.2", + "version": "3.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@asyncapi/avro-schema-parser", - "version": "3.0.2", + "version": "3.0.3", "license": "Apache-2.0", "dependencies": { "@asyncapi/parser": "^2.1.0", diff --git a/package.json b/package.json index c7bf8d5..af99218 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@asyncapi/avro-schema-parser", - "version": "3.0.2", + "version": "3.0.3", "description": "An AsyncAPI schema parser for Avro 1.x schemas.", "scripts": { "build": "npm run build:esm && npm run build:cjs", From ce31a267c8ad0dfecfac4451315747c10790ead8 Mon Sep 17 00:00:00 2001 From: Richa <41283476+14Richa@users.noreply.github.com> Date: Wed, 9 Aug 2023 19:43:52 +0530 Subject: [PATCH 3/3] ci: update MAINTAINERS.yaml based on CODEOWNERS changes (#221) --- .github/workflows/update-maintainers.yml | 171 +++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 .github/workflows/update-maintainers.yml diff --git a/.github/workflows/update-maintainers.yml b/.github/workflows/update-maintainers.yml new file mode 100644 index 0000000..d2b5142 --- /dev/null +++ b/.github/workflows/update-maintainers.yml @@ -0,0 +1,171 @@ +name: Update MAINTAINERS.yaml in community repo + +on: + pull_request: + types: [closed] + paths: + - 'CODEOWNERS' + +jobs: + update-maintainers: + if: github.event.pull_request.merged + runs-on: ubuntu-latest + + steps: + - name: Checkout main branch + uses: actions/checkout@v3 + with: + ref: master + path: current_state + + - name: Checkout one commit before last one + uses: actions/checkout@v3 + with: + fetch-depth: 2 + ref: master + path: previous_state + + - run: cd previous_state && git checkout HEAD^ + + - name: Checkout community repo + uses: actions/checkout@v3 + with: + repository: asyncapi/community + token: ${{ secrets.GH_TOKEN}} + path: community + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Install js-yaml + run: npm install js-yaml@3.14.1 + + - name: Compare CODEOWNERS + id: compare-codeowners + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} + uses: actions/github-script@v6 + with: + script: | + const fs = require('fs'); + const yaml = require('js-yaml'); + + // Get repository name + const repoName = context.repo.repo; + + function extractGitHubUsernames(content) { + // Remove lines starting with # + content = content.replace(/^#.*$/mg, ""); + + const regex = /@([a-zA-Z0-9_-]+)/g; + const matches = content.match(regex); + if (!matches) { + return []; + } + return matches.map(match => match.substr(1)); + } + + const currentCodeowners = fs.readFileSync('./current_state/CODEOWNERS', 'utf8'); + const previousCodeowners = fs.readFileSync('./previous_state/CODEOWNERS', 'utf8'); + + const currentUsernames = extractGitHubUsernames(currentCodeowners); + const previousUsernames = extractGitHubUsernames(previousCodeowners); + + const addedUsernames = currentUsernames.filter(username => !previousUsernames.includes(username)); + const removedUsernames = previousUsernames.filter(username => !currentUsernames.includes(username)); + + core.info('Added Usernames:', addedUsernames); + core.info('Removed Usernames:', removedUsernames); + core.info(`ADDED_USERNAMES=${addedUsernames.join(', ')}`); + core.info(`REMOVED_USERNAMES=${removedUsernames.join(', ')}`); + + // Update MAINTAINERS.yaml + const maintainersFile = './community/MAINTAINERS.yaml'; + const maintainers = yaml.safeLoad(fs.readFileSync(maintainersFile, 'utf8')); + + + // Update for added usernames + for (const username of addedUsernames) { + // Exclude bot accounts + if (username === 'asyncapi-bot' || username === 'asyncapi-bot-eve') { + core.info('Skipping bot account:', username); + continue; // Skip the iteration for bot accounts + } + + const maintainer = maintainers.find(maintainer => maintainer.github === username); + if (!maintainer) { + const { data } = await github.rest.users.getByUsername({ username }); + const twitterUsername = data.twitter_username; + maintainers.push({ + github: username, + twitter: twitterUsername, + isTscMember: false, + repos: [repoName] + }); + core.info('Added maintainer:', username); + } else { + // If the maintainer already exists, check if the current repo is in their list + if (!maintainer.repos.includes(repoName)) { + maintainer.repos.push(repoName); + core.info('Added repository to existing maintainer:', username); + } else { + core.info(`Maintainer ${username} already exists and already has the repo. Skipping addition.`); + } + } + } + + // Update for removed usernames + for (const username of removedUsernames) { + const index = maintainers.findIndex(maintainer => maintainer.github === username); + if (index !== -1) { + const maintainer = maintainers[index]; + const repoIndex = maintainer.repos.findIndex(repo => repo === repoName); + + if (repoIndex !== -1) { + maintainer.repos.splice(repoIndex, 1); + core.info(`Removed repository ${repoName} from maintainer ${username}`); + if (maintainer.repos.length === 0) { + maintainers.splice(index, 1); + core.info(`Removed maintainer ${username} as they have no other repositories`); + } + } else { + core.info(`Repository ${repoName} not found for maintainer ${username}`); + } + } else { + core.info(`Maintainer ${username} does not exist. Skipping removal.`); + } + } + + // Write updated MAINTAINERS.yaml file + const updatedMaintainers = yaml.safeDump(maintainers); + fs.writeFileSync(maintainersFile, updatedMaintainers); + core.info('Updated MAINTAINERS.yaml:', updatedMaintainers); + + - name: Create new branch + working-directory: ./community + run: | + git checkout -b update-maintainers-${{ github.run_id }} + + - name: Commit and push + working-directory: ./community + run: | + git add . + git commit -m "Update MAINTAINERS.yaml" + git push https://${{ secrets.GH_TOKEN}}@github.com/asyncapi/community update-maintainers-${{ github.run_id }} + + - name: Create PR + working-directory: ./community + run: | + gh pr create --title "docs(community): update latest maintainers list" --body "Updated Maintainers list is available and this PR introduces changes with latest information about Maintainers" --head update-maintainers-${{ github.run_id }} + + + - name: Report workflow run status to Slack + if: failure() # Only, on failure, send a message on the slack channel + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_CI_FAIL_NOTIFY }} + SLACK_TITLE: 🚨 Update maintainers list action failed 🚨 + SLACK_MESSAGE: Failed to update the maintainers list. + MSG_MINIMAL: true \ No newline at end of file