-
-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into web-release-3
- Loading branch information
Showing
23 changed files
with
461 additions
and
108 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NEXT_PUBLIC_ALGOLIA_API_KEY= | ||
NEXT_PUBLIC_ALGOLIA_APP_ID= |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: "CodeQL Code Scanning" | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze (${{ matrix.language }}) | ||
runs-on: 'ubuntu-latest' | ||
permissions: | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- language: javascript-typescript | ||
build-mode: none | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
build-mode: ${{ matrix.build-mode }} | ||
|
||
# Perform the CodeQL Analysis | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{matrix.language}}" |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Issue Workflow | ||
|
||
on: | ||
issues: | ||
types: ['opened'] | ||
|
||
jobs: | ||
Issue-Labeler: | ||
name: Adding Label to issue | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Renato66/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore-comments: true | ||
default-labels: '["Status: Triage"]' | ||
|
||
Issue-Greeting: | ||
name: Greeting Message to User | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Greeting Message to User | ||
uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: | | ||
Welcome to the [JSON Schema](https://json-schema.org/) Community. We are so excited you are here! Thanks a lot for reporting your first issue!! 🎉🎉 Please make sure to take a look to our [contributors guide](https://github.com/json-schema-org/website/blob/main/CONTRIBUTING.md) if you plan on opening a pull request. | ||
For more details check out [README.md](https://github.com/json-schema-org/website?tab=readme-ov-file#-welcome-to-the-json-schema-website) file. | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Link Checker | ||
|
||
on: | ||
repository_dispatch: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 1 * *' # Run at midnight on the first of every month | ||
|
||
jobs: | ||
linkChecker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Submodule | ||
run: git submodule update --init --recursive | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Serve App Locally | ||
run: yarn run dev & | ||
|
||
- name: Wait for App to Start | ||
run: sleep 20 | ||
|
||
# This will restore the lychee cache | ||
- name: Restore lychee cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: .lycheecache | ||
key: cache-lychee-${{ github.sha }} | ||
restore-keys: cache-lychee- | ||
|
||
# This will run the link checker on all markdown files in the pages directory | ||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/lychee-action@v1 | ||
with: | ||
args: --base http://localhost:3000 --verbose --no-progress --accept 200,204,429,403 './pages/**/*.md' --cache --max-cache-age 1d http://localhost:3000 | ||
token: ${{secrets.AUTH_TOKEN}} | ||
|
||
- name: Install Octokit | ||
run: yarn add @octokit/[email protected] | ||
|
||
# This will create an issue with the link checker report if it does not exist, otherwise it will update the existing issue. | ||
|
||
- name: Create Issue | ||
if: env.lychee_exit_code != 0 | ||
uses: actions/github-script@v7 | ||
env: | ||
AUTH_TOKEN: ${{secrets.AUTH_TOKEN}} | ||
with: | ||
script: | | ||
const { Octokit } = require("@octokit/core"); | ||
const octokit = new Octokit({ auth: process.env.AUTH_TOKEN }); | ||
const allIssues = await octokit.request('GET /repos/{owner}/{repo}/issues', { | ||
owner: context.repo.owner, | ||
repo: context.repo.repo | ||
}); | ||
const existingIssue = allIssues.data.find(issue => issue.title === 'Link Checker Report'); | ||
if (existingIssue) { | ||
await octokit.request('PATCH /repos/{owner}/{repo}/issues/{issue_number}', { | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: existingIssue.number, | ||
body: '## Link Checker Report\n\n' + require('fs').readFileSync('./lychee/out.md', 'utf8') | ||
}); | ||
} else { | ||
await octokit.request('POST /repos/{owner}/{repo}/issues', { | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
title: 'Link Checker Report', | ||
body: '## Link Checker Report\n\n' + require('fs').readFileSync('./lychee/out.md', 'utf8') | ||
}); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Check PR Dependencies | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
check_dependencies: | ||
runs-on: ubuntu-latest | ||
name: Check Dependencies | ||
steps: | ||
- uses: gregsdennis/dependencies-action@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Pull Request Target Workflow | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, closed] | ||
|
||
|
||
jobs: | ||
greet-on-first-pr: | ||
runs-on: ubuntu-latest | ||
if: github.event.action == 'opened' | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-message: > | ||
Welcome to the [JSON Schema](https://json-schema.org/) Community. Thanks a lot for creating your first pull request!! 🎉🎉 We are so excited you are here! We hope this is only the first of many! | ||
For more details check out [README.md](https://github.com/json-schema-org/website?tab=readme-ov-file#-welcome-to-the-json-schema-website) file. | ||
greet-on-first-merge: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
if: github.event.pull_request.merged == true | ||
steps: | ||
- name: Check if this is the user's first merged PR | ||
id: check_first_pr | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const prAuthor = context.payload.pull_request.user.login; | ||
const owner = context.repo.owner; | ||
const repo = context.repo.repo; | ||
const response = await fetch(`https://api.github.com/search/issues?q=repo:${owner}/${repo}+type:pr+state:closed+author:${prAuthor}+is:merged`); | ||
const data = await response.json(); | ||
const mergedCount = data.total_count; | ||
console.log(`User ${prAuthor} has ${mergedCount} merged PRs`); | ||
core.setOutput('mergedCount', mergedCount); | ||
- name: Comment on the first merged PR | ||
if: steps.check_first_pr.outputs.mergedCount == '1' | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const prNumber = context.payload.pull_request.number; | ||
const prAuthor = context.payload.pull_request.user.login; | ||
const commentBody = `Congratulations, @${prAuthor} for your first pull request merge in this repository! 🎉🎉. Thanks for your contribution to JSON Schema! `; | ||
await github.rest.issues.createComment({ | ||
issue_number: prNumber, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: commentBody | ||
}) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' # Runs every Sunday at midnight | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Message to comment on stale issues. | ||
stale-issue-message: | | ||
Hello! :wave: | ||
This issue has been automatically marked as stale due to inactivity :sleeping: | ||
It will be closed in 180 days if no further activity occurs. To keep it active, please add a comment with more details. | ||
There can be many reasons why a specific issue has no activity. The most probable cause is a lack of time, not a lack of interest. | ||
Let us figure out together how to push this issue forward. Connect with us through our slack channel : https://json-schema.org/slack | ||
Thank you for your patience :heart: | ||
# Message to comment on stale pull requests. | ||
stale-pr-message: | | ||
Hello! :wave: | ||
This pull request has been automatically marked as stale due to inactivity :sleeping: | ||
It will be closed in 180 days if no further activity occurs. To keep it active, please add a comment with more details. | ||
There can be many reasons why a specific pull request has no activity. The most probable cause is a lack of time, not a lack of interest. | ||
Let us figure out together how to push this pull request forward. Connect with us through our slack channel : https://json-schema.org/slack | ||
Thank you for your patience :heart: | ||
# Message to comment on issues that are about to be closed. | ||
close-issue-message: 'This issue did not get any activity in the past 180 days and thus has been closed. Please check if the main branch has fixed it. Please, create a new issue if the issue is not fixed.' | ||
|
||
# Message to comment on pull requests that are about to be closed. | ||
close-pr-message: 'This pull request did not get any activity in the past 180 days and thus has been closed.' | ||
|
||
# Labels to add to stale issues and pull requests. | ||
stale-issue-label: 'Status: Stale' | ||
stale-pr-label: 'Status: Stale' | ||
|
||
# Number of days of inactivity before an issue/PR is marked as stale. | ||
days-before-stale: 30 | ||
|
||
# Number of days of inactivity before an issue/PR is closed. | ||
days-before-close: 180 | ||
|
||
# Remove the stale label when the issue/PR is updated. | ||
remove-stale-when-updated: true | ||
|
||
# Exempt labels to ignore when checking for stale issues/PRs. | ||
exempt-pr-labels: 'Status: On Hold,Status: Blocked' | ||
exempt-issue-labels: 'Status: On Hold,Status: Blocked' |
Oops, something went wrong.