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
45 changes: 0 additions & 45 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,51 +337,6 @@ jobs:
# The head sha aligns with how the sha used in prod builds
GAZEBO_SHA: ${{ github.event.pull_request.head.sha }}

overwatch:
name: Run Overwatch
runs-on: ubuntu-latest
needs: install
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20

- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v4
env:
cache-name: cache-gazebo-node-modules
with:
path: |
node_modules
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-

- name: Install Build Dependencies
run: |
sudo apt-get update
# Install libssl1.1 from Ubuntu 20.04 repositories
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb

- name: Install Overwatch CLI
run: |
curl -o overwatch-cli https://overwatch.codecov.io/linux/cli
chmod +x overwatch-cli

- name: Run Overwatch CLI
run: |
./overwatch-cli \
--auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} \
--organization-slug codecov \
typescript --package-manager yarn --eslint-pattern src

storybook:
name: Run storybook
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ const EraseRepoModal = ({ closeModal, eraseRepo, isLoading, showModal }) => {
body={
<p>
This will erase the repository, including all of its contents. This
action is irreversible and if you proceed, you will permanently erase
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did you mean to update this copy? If not may want to remove from this PR

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I did, should've called that out in the description too. All the - and redundant wording was just kinda bugging me lol

any historical code coverage in Codecov for this repository. The
repository itself will be re-created when resync-ing the organization
contents.
action is irreversible and will permanently erase any historical code
coverage in Codecov for this repository. The repository will be
recreated when resyncing the organization.
</p>
}
footer={
Expand Down
Loading