-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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 no-more-nonreal
- Loading branch information
Showing
787 changed files
with
16,132 additions
and
7,683 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
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
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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
data:api :rabbit2:: | ||
data:api: | ||
- 'api\.' | ||
- '\/docs\/Web\/API' | ||
data:css :art:: | ||
data:css: | ||
- 'css\.' | ||
- '\/docs\/Web\/CSS' | ||
data:html :page_facing_up:: | ||
data:html: | ||
- 'html\.' | ||
- '\/docs\/Web\/HTML' | ||
data:http :mountain_cableway:: | ||
data:http: | ||
- 'http\.' | ||
- '\/docs\/Web\/HTTP' | ||
data:js :pager:: | ||
data:js: | ||
- 'js\.' | ||
- '\/docs\/Web\/JavaScript' | ||
data:mathml :heavy_division_sign:: | ||
data:mathml: | ||
- 'mathml\.' | ||
- '\/docs\/Web\/MathML' | ||
data:svg :paintbrush:: | ||
data:svg: | ||
- 'svg\.' | ||
- '\/docs\/Web\/SVG' | ||
data:wasm :mechanical_arm:: | ||
data:wasm: | ||
- 'webassembly\.' | ||
- '\/docs\/WebAssembly' | ||
data:webdriver :racing_car:: | ||
data:webdriver: | ||
- 'webdriver\.' | ||
- '\/docs\/Web\/WebDriver' | ||
data:webext :game_die:: | ||
data:webext: | ||
- 'webextensions\.' | ||
- '\/docs\/Mozilla\/Add-ons' |
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
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 |
---|---|---|
|
@@ -11,10 +11,21 @@ jobs: | |
close-issues-if-invalid: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: queengooborg/[email protected] | ||
- uses: queengooborg/[email protected] | ||
id: spam-check | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
labels: "invalid :no_entry_sign:" | ||
labels: "spam" | ||
lock: "spam" | ||
comment: | | ||
This issue has been identified as spam and has been automatically closed and locked. Do not use this repository for posting spam. | ||
normalize-newlines: true | ||
body-is-blank: true | ||
- uses: queengooborg/[email protected] | ||
if: steps.spam-check.outputs.was-closed == 'false' | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
labels: "invalid" | ||
comment: | | ||
This issue was automatically closed because the title was left as the default, and a summary was not added. | ||
|
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,63 @@ | ||
name: Reviewdog | ||
|
||
on: | ||
pull_request_target: | ||
branches: ["main"] | ||
|
||
jobs: | ||
fix: | ||
name: Fix | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
cache: npm | ||
|
||
- run: npm ci | ||
|
||
- run: npm run fix | ||
env: | ||
FORCE_COLOR: 3 | ||
|
||
- run: git diff > diff.patch | ||
|
||
- name: Upload diff | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: diff | ||
path: diff.patch | ||
|
||
suggest: | ||
name: Suggest | ||
needs: fix | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download diff | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: diff | ||
|
||
- name: Setup | ||
uses: reviewdog/action-setup@v1 | ||
with: | ||
reviewdog_version: latest | ||
|
||
- name: Suggest changes | ||
env: | ||
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cat diff.patch | reviewdog \ | ||
-name="bcd-linter" \ | ||
-f=diff \ | ||
-f.diff.strip=1 \ | ||
-filter-mode=diff_context \ | ||
-reporter=github-pr-review |
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
Oops, something went wrong.