Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
- name: NASA Scrub
run: |
pip install nasa-scrub
python3 -m scrub.tools.parsers.translate_results /home/runner/work/aerie-gateway/results/*.sarif /home/runner/work/aerie-gateway/results/codeql.scrub ${{ github.workspace }} scrub
python3 -m scrub.tools.parsers.csv_parser /home/runner/work/aerie-gateway/results
python3 -m scrub.tools.parsers.translate_results ${{ runner.workspace }}/results/*.sarif ${{ runner.workspace }}/results/codeql.scrub ${{ github.workspace }} scrub
python3 -m scrub.tools.parsers.csv_parser ${{ runner.workspace }}/results
- name: Upload CodeQL Artifacts
uses: actions/upload-artifact@v4
with:
name: codeql-artifacts
path: /home/runner/work/aerie-gateway/results/*
path: ${{ runner.workspace }}/results/*
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}
# hardcoded to aerie-gateway since image names are not updating to plandev yet
images: ${{ env.REGISTRY }}/nasa-ammos/aerie-gateway
- name: Build Docker Image
uses: docker/build-push-action@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ representative at an online or offline event.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
aerie_support@jpl.nasa.gov.
plandev_support@jpl.nasa.gov.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
![GitHub package.json version](https://img.shields.io/github/package-json/v/NASA-AMMOS/aerie-gateway?color=brightgreen)
![GitHub package.json version](https://img.shields.io/github/package-json/v/NASA-AMMOS/plandev-gateway?color=brightgreen)

# aerie-gateway
# plandev-gateway

The API gateway for [PlanDev](https://github.com/NASA-AMMOS/aerie).
The API gateway for [PlanDev](https://github.com/NASA-AMMOS/plandev).

## Aerie -> PlanDev Rebrand

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "aerie-gateway",
"name": "plandev-gateway",
"description": "The API gateway for PlanDev.",
"version": "4.1.1",
"type": "module",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/NASA-AMMOS/aerie-gateway.git"
"url": "https://github.com/NASA-AMMOS/plandev-gateway.git"
},
"engines": {
"node": ">=20.0.0",
Expand Down
Loading