-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into armcknight/feat(use…
…r-feedback)/cocoa-docs
- Loading branch information
Showing
1,585 changed files
with
37,957 additions
and
16,268 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 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 |
---|---|---|
@@ -1,24 +1,10 @@ | ||
/* eslint-env node */ | ||
/* eslint import/no-nodejs-modules:0 */ | ||
|
||
module.exports = { | ||
extends: ['sentry-docs', 'plugin:@next/next/recommended'], | ||
globals: { | ||
jest: true, | ||
Atomics: 'readonly', | ||
SharedArrayBuffer: 'readonly', | ||
}, | ||
rules: { | ||
'import/no-nodejs-modules': 'off', | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.ts', '*.tsx'], | ||
rules: { | ||
// Reach is vendored into gatsby. They have their own webpack | ||
// resolution for it which this eslint plugin can't seem to detect | ||
'import/no-unresolved': ['error', {ignore: ['@reach']}], | ||
}, | ||
}, | ||
], | ||
}; |
Validating CODEOWNERS rules …
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,61 @@ | ||
name: "📝 SDK Documentation" | ||
labels: ["Type: Content", "SDKs"] | ||
description: Missing, incorrect, or unclear documentation of SDKs. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
Is the documentation issue something you know how to fix? Consider contributing to Open Source by opening a PR to fix it instead! | ||
- type: dropdown | ||
id: area | ||
attributes: | ||
label: SDK | ||
description: Which SDK documentation are we talking about? | ||
options: | ||
- Android SDK | ||
- Apple SDK | ||
- Dart SDK | ||
- Elixir SDK | ||
- Flutter SDK | ||
- Go SDK | ||
- Java SDK | ||
- JavaScript SDK | ||
- Kotlin Multiplatform SDK | ||
- Native SDK | ||
- .NET SDK | ||
- PHP SDK | ||
- PowerShell SDK | ||
- Python SDK | ||
- React Native SDK | ||
- Ruby SDK | ||
- Rust SDK | ||
- Unity SDK | ||
- Unreal Engine SDK | ||
- Sentry CLI | ||
- All JavaScript SDKs | ||
- All Backend SDKs | ||
- All Mobile SDKs | ||
- All Gaming SDKs | ||
- All SDKs | ||
- Other | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: What were you looking for/trying to do/expecting? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Suggested Solution | ||
description: If you have an idea on how we can solve this, please share. | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
## Thanks 🙏 | ||
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next. |
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,38 @@ | ||
name: "📝 Documentation on develop.sentry.dev" | ||
labels: ["Type: Content", "Develop"] | ||
description: Missing, incorrect, or unclear developer documentation. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
Is the documentation issue something you know how to fix? Consider contributing to Open Source by opening a PR to fix it instead! | ||
- type: input | ||
id: area-specific | ||
attributes: | ||
label: Which section? | ||
description: Which section of the developer documentation needs to be updated? | ||
validations: | ||
required: true | ||
- type: input | ||
id: page-url | ||
attributes: | ||
label: Page URL | ||
description: Please provide the URL of the page which should be changed (if applicable). | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: What were you looking for/trying to do/expecting? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Suggested Solution | ||
description: If you have an idea on how we can solve this, please share. | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
## Thanks 🙏 | ||
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next. | ||
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 |
---|---|---|
|
@@ -12,13 +12,19 @@ jobs: | |
name: 'Bump API Schema SHA' | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Get auth token | ||
id: token | ||
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 | ||
with: | ||
app-id: ${{ vars.SENTRY_INTERNAL_APP_ID }} | ||
private-key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }} | ||
- name: 'Bump API Schema SHA' | ||
shell: bash | ||
env: | ||
# An elevated token is necessary because with plain github.token | ||
# GitHub does not recursively call workflows, which means CI does not | ||
# kick off for the PR we're about to create. | ||
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }} | ||
GITHUB_TOKEN: ${{ steps.token.outputs.token }} | ||
run: | | ||
set -euo pipefail | ||
|
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,22 @@ | ||
name: Enforce Version Conventions | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
check-version-convention: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install bun | ||
uses: oven-sh/setup-bun@v2 | ||
with: | ||
bun-version: latest | ||
|
||
- name: Run script for checking conventions | ||
run: bun scripts/check-version-conventions.ts |
Oops, something went wrong.