forked from newrelic/docs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/jcountsNR/docs-website i…
…nto develop
- Loading branch information
Showing
6,780 changed files
with
104,179 additions
and
71,626 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,24 @@ | ||
### ✨ Summary | ||
|
||
<!-- Add context such as what problem this solves or steps to reproduce --> | ||
|
||
### 🖼️ Screenshots | ||
|
||
<!-- Add some helpful imagery (optional) --> | ||
|
||
### 🔮 Engineering checklist | ||
|
||
<!-- Remove any items that do not apply --> | ||
|
||
- [ ] Relevant documentation including README's or Confluence are updated to reflect these changes | ||
- [ ] Code changes are self-documenting or clearly commented/documented | ||
- [ ] Changes that effect tech writers have been communicated to tech docs team | ||
- [ ] New components created for use in MDX files have been serialized/deserialized | ||
- [ ] New tests are added where applicable and total coverage remains >70% | ||
- [ ] No new warnings or errors where added to the browser or build console | ||
- All downstream dependencies for DaaS have been considered for negative impacts | ||
- [ ] What's new JSON endpoints | ||
- [ ] Release notes JSON & EOL pages | ||
- [ ] The build preview has been checked for expected functionality on desktop browsers | ||
- [ ] The build preview has been checked for expected functionality on mobile browsers | ||
- [ ] Synthetics tests have been considered for any changes that might trigger false positives |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Attribute dictionary updates | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
deny-attribute-dictionary-changes: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Prevent file change | ||
uses: xalvarez/prevent-file-change-action@v1 | ||
with: | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
pattern: .*\attribute-dictionary.json | ||
trustedAuthors: nr-opensource-bot | ||
|
||
- name: Comment if JSON file is modified | ||
if: failure() | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: | | ||
> [!WARNING] | ||
> `attribute-dictionary.json` is an autogenerated file. | ||
> | ||
> Changes to attribute dictionary should be made through [source.datanerd.us/docs-eng/attribute-dictionary](https://source.datanerd.us/docs-eng/attribute-dictionary) |
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ jobs: | |
add-reviews: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/[email protected].0 | ||
- uses: kentaro-m/[email protected].5 |
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: Check for Keys | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
check-for-keys: | ||
name: Check for keys in files and commit history | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
|
||
- name: Check for keys | ||
run: ./scripts/actions/check-for-keys.sh |
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 |
---|---|---|
|
@@ -52,12 +52,3 @@ jobs: | |
- name: Set Release Version from Tag | ||
run: echo "RELEASE_VERSION=${{ env.NEW_TAG }}" >> $GITHUB_ENV | ||
|
||
- name: Create New Relic deployment marker | ||
uses: newrelic/[email protected] | ||
with: | ||
apiKey: ${{ secrets.NEW_RELIC_API_KEY_DEPLOY_MARKERS }} | ||
guid: ${{ secrets.NEW_RELIC_DEPLOYMENT_ENTITY_GUID }} | ||
region: 'staging' | ||
version: '${{ env.RELEASE_VERSION }}' | ||
user: '${{ github.actor }}' |
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,39 @@ | ||
name: verify mdx files | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
|
||
env: | ||
NODE_OPTIONS: '--max-old-space-size=4096' | ||
CHOKIDAR_USEPOLLING: 1 | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
verify-mdx: | ||
name: run verify | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Cache dependencies | ||
id: yarn-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Install dependencies | ||
if: steps.yarn-cache.outputs.cache-hit != 'true' | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Run verify-mdx | ||
run: yarn verify-mdx |
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
Oops, something went wrong.