Rescue NonExistingDocumentError
in base server (#2331)
#81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- name: Create release | |
uses: actions/github-script@v7 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
script: | | |
const { data } = await github.rest.repos.listReleases({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
}); | |
const previousRelease = data.find((release) => !release.tag_name.startsWith("vscode-ruby-lsp") && release.tag_name !== "${{ github.ref_name }}"); | |
const commitResponse = await github.rest.repos.compareCommits({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
base: previousRelease.tag_name, | |
head: "${{ github.ref_name }}" | |
}); | |
const pullRequests = []; | |
for (const commit of commitResponse.data.commits) { | |
const pullsResponse = await github.request(`GET /repos/shopify/ruby-lsp/commits/${commit.sha}/pulls`); | |
pullsResponse.data.forEach((pr) => { | |
if (!pullRequests.some((pull) => pull.url === pr.html_url)) { | |
pullRequests.push({ | |
title: pr.title, | |
url: pr.html_url, | |
labels: pr.labels.map((label) => label.name), | |
author: pr.user.login | |
}); | |
} | |
}); | |
} | |
const relevantPulls = pullRequests.filter((pull) => { | |
return pull.labels.some((label) => label === "server") && | |
!pull.labels.some((label) => label === "dependencies") && | |
!pull.labels.some((label) => label === "chore") | |
}); | |
const breakingChanges = relevantPulls.filter((pull) => pull.labels.some((label) => label === "breaking-change")); | |
const bugFixes = relevantPulls.filter((pull) => pull.labels.some((label) => label === "bugfix")); | |
const enhancements = relevantPulls.filter((pull) => pull.labels.some((label) => label === "enhancement")); | |
const otherChanges = relevantPulls.filter((pull) => !pull.labels.some((label) => ["bugfix", "enhancement", "breaking-change"].includes(label))); | |
let content = `# ${{ github.ref_name }}\n`; | |
if (breakingChanges.length > 0) { | |
content += `## 🚧 Breaking Changes\n\n${breakingChanges.map((pull) => `- ${pull.title} (${pull.url}) by @${pull.author}`).join("\n")}\n\n`; | |
} | |
if (enhancements.length > 0) { | |
content += `## ✨ Enhancements\n\n${enhancements.map((pull) => `- ${pull.title} (${pull.url}) by @${pull.author}`).join("\n")}\n\n`; | |
} | |
if (bugFixes.length > 0) { | |
content += `## 🐛 Bug Fixes\n\n${bugFixes.map((pull) => `- ${pull.title} (${pull.url}) by @${pull.author}`).join("\n")}\n\n`; | |
} | |
if (otherChanges.length > 0) { | |
content += `## 📦 Other Changes\n\n${otherChanges.map((pull) => `- ${pull.title} (${pull.url}) by @${pull.author}`).join("\n")}\n\n`; | |
} | |
await github.rest.repos.createRelease({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
tag_name: "${{ github.ref }}", | |
name: "${{ github.ref_name }}", | |
body: content | |
}); |