-
Notifications
You must be signed in to change notification settings - Fork 201
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/beta-releases' into ga-releases
- Loading branch information
Showing
200 changed files
with
4,383 additions
and
7,896 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,32 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
DOCKER_HUB_URL="https://index.docker.io/v1/" | ||
|
||
STDIN=$(cat) | ||
|
||
ACTION="$1" | ||
|
||
case "$ACTION" in | ||
get) | ||
SERVER_URL="$STDIN" | ||
|
||
if [[ "$SERVER_URL" == "$DOCKER_HUB_URL" ]]; then | ||
if [[ -z "${DOCKERHUB_USERNAME:-}" || -z "${DOCKERHUB_PASSWORD:-}" ]]; then | ||
echo "Error: DOCKERHUB_USERNAME or DOCKERHUB_PASSWORD environment variables are not set." >&2 | ||
exit 1 | ||
fi | ||
|
||
echo "{\"Username\": \"$DOCKERHUB_USERNAME\", \"Secret\": \"$DOCKERHUB_PASSWORD\"}" | ||
else | ||
echo "Error: No credentials available for $SERVER_URL" >&2 | ||
exit 1 | ||
fi | ||
;; | ||
|
||
*) | ||
echo "Unsupported action: $ACTION" >&2 | ||
exit 1 | ||
;; | ||
esac |
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,6 @@ | ||
{ | ||
"auths": { | ||
"https://index.docker.io/v1/": {} | ||
}, | ||
"credsStore": "from-env" | ||
} |
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 |
---|---|---|
|
@@ -15,20 +15,27 @@ jobs: | |
env: | ||
HADRON_DISTRIBUTION: compass | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Create Github App Token | ||
uses: mongodb-js/devtools-shared/actions/setup-bot-token@main | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }} | ||
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }} | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
# don't checkout a detatched HEAD | ||
ref: ${{ github.head_ref }} | ||
|
||
# this is important so git log can pick up on | ||
# the whole history to generate the list of AUTHORS | ||
fetch-depth: '0' | ||
fetch-depth: "0" | ||
token: ${{ steps.app-token.outputs.token }} | ||
|
||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.16.0 | ||
cache: 'npm' | ||
cache: "npm" | ||
|
||
- name: Install [email protected] | ||
run: | | ||
|
@@ -40,38 +47,26 @@ jobs: | |
npm run bootstrap-ci | ||
- name: Update AUTHORS | ||
run: npm run update-authors | ||
run: | | ||
npm run update-authors | ||
git add AUTHORS | ||
- name: Update THIRD-PARTY-NOTICES.md | ||
run: npm run update-third-party-notices | ||
run: | | ||
npm run update-third-party-notices | ||
git add THIRD-PARTY-NOTICES.md | ||
- name: Update Security Test Summary | ||
run: | | ||
npm run update-security-test-summary | ||
git add docs/security-test-summary.md | ||
- name: Update tracking-plan.md | ||
run: npm run update-tracking-plan | ||
|
||
- name: Create Pull Request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
commit-message: Update report | ||
branch: ci/update-3rd-party-notices-and-authors | ||
title: 'chore: update AUTHORS, THIRD-PARTY-NOTICES, Security Test Summary' | ||
add-paths: | | ||
THIRD-PARTY-NOTICES.md | ||
AUTHORS | ||
docs/security-test-summary.md | ||
docs/tracking-plan.md | ||
body: | | ||
- Update `AUTHORS`, `THIRD-PARTY-NOTICES`, docs/tracking-plan.md and `docs/security-test-summary.md` | ||
run: | | ||
npm run update-tracking-plan | ||
git add docs/tracking-plan.md | ||
- name: Merge PR | ||
env: | ||
PULL_REQUEST_NUMBER: ${{steps.cpr.outputs.pull-request-number}} | ||
# NOTE: we don't use a PAT so to not trigger further automation | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Commit and push | ||
run: | | ||
gh pr merge $PULL_REQUEST_NUMBER --squash --delete-branch | ||
gh workflow run codeql.yml -r main | ||
git commit --no-allow-empty -m "chore: update AUTHORS, THIRD-PARTY-NOTICES, Security Test Summary [skip actions]" || true | ||
git push |
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 |
---|---|---|
|
@@ -10,24 +10,22 @@ jobs: | |
name: Bump packages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Create Github App Token | ||
uses: mongodb-js/devtools-shared/actions/setup-bot-token@main | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }} | ||
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }} | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
# don't checkout a detatched HEAD | ||
ref: ${{ github.head_ref }} | ||
|
||
# this is important so git log can pick up on | ||
# the whole history to generate the list of AUTHORS | ||
fetch-depth: '0' | ||
|
||
- name: Setup git | ||
run: | | ||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.16.0 | ||
cache: 'npm' | ||
cache: "npm" | ||
|
||
- name: Install [email protected] | ||
run: | | ||
|
@@ -40,21 +38,20 @@ jobs: | |
- name: Bump packages | ||
env: | ||
LAST_BUMP_COMMIT_MESSAGE: 'chore(release): bump package versions' | ||
SKIP_BUMP_PACKAGES: 'mongodb-compass' | ||
LAST_BUMP_COMMIT_MESSAGE: "chore(release): bump package versions" | ||
SKIP_BUMP_PACKAGES: "mongodb-compass" | ||
run: | | ||
npm run bump-packages | ||
git add . | ||
git commit --no-allow-empty -m "$LAST_BUMP_COMMIT_MESSAGE" || true | ||
- name: Create Pull Request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v6 | ||
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # 7.0.5 | ||
with: | ||
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }} | ||
commit-message: 'chore(release): bump package versions' | ||
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }} # TODO: replace with steps.app-token.outputs.token when it gets the PR permissions | ||
commit-message: "chore(release): bump package versions" | ||
branch: ci/bump-packages | ||
title: 'chore(release): bump package versions' | ||
title: "chore(release): bump package versions" | ||
labels: no-title-validation | ||
body: | | ||
- Bump package versions |
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,44 +11,40 @@ jobs: | |
name: Update Electron | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Create Github App Token | ||
uses: mongodb-js/devtools-shared/actions/setup-bot-token@main | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }} | ||
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }} | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
# don't checkout a detatched HEAD | ||
ref: ${{ github.head_ref }} | ||
|
||
# this is important so git log can pick up on | ||
# the whole history to generate the list of AUTHORS | ||
fetch-depth: '0' | ||
|
||
- name: Setup git | ||
run: | | ||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.16.0 | ||
cache: 'npm' | ||
cache: "npm" | ||
|
||
- name: Install [email protected] | ||
run: | | ||
npm install -g [email protected] | ||
- name: Install Dependencies | ||
run: | | ||
npm -v | ||
npm ci | ||
run: npm ci | ||
|
||
- name: Bump packages | ||
run: | | ||
node scripts/update-electron.js | ||
git add . | ||
git commit --no-allow-empty -m "chore(deps): update electron" || true | ||
run: node scripts/update-electron.js | ||
|
||
- name: Create Pull Request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v6 | ||
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # 7.0.5 | ||
with: | ||
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }} | ||
commit-message: 'chore(deps): update electron' | ||
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }} # TODO: replace with steps.app-token.outputs.token when it gets the PR permissions | ||
commit-message: "chore(deps): update electron" | ||
branch: ci/update-electron | ||
title: 'chore(deps): update electron' | ||
title: "chore(deps): update electron" | ||
labels: no-title-validation | ||
body: | | ||
- Update electron |
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.