Skip to content

Commit

Permalink
Remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorcast-db committed Sep 3, 2024
1 parent 3305a91 commit 198bc3f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 68 deletions.
67 changes: 0 additions & 67 deletions .github/workflows/check-mark.yml

This file was deleted.

21 changes: 20 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: Integration Tests
on:

pull_request:
branches: [ main ]
types: [opened, synchronize]
merge_group:
types: [checks_requested]


jobs:
check:
if: github.event_name == 'pull_request'
name: Run Check
runs-on: ubuntu-latest

Expand Down Expand Up @@ -43,3 +47,18 @@ jobs:
This check will be approved automatically on success.
"
# The hash for the merge queue may not be the same as the hash for the PR.
# Auto approve the check for the merge queue to avoid running integration tests twice.
auto-approve:
if: github.event_name == 'merge_group'
runs-on: ubuntu-latest
steps:
- name: Mark Check
shell: bash
run: |
gh api -X POST -H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/databricks/databricks-sdk-go/statuses/${{ github.event.pull_request.merge_commit_sha }} \
-f 'state=success' \
-f 'context=Integration Tests Check'

0 comments on commit 198bc3f

Please sign in to comment.