Skip to content
Open
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
8 changes: 6 additions & 2 deletions .github/workflows/ci-dgraph4j-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ on:
- reopened
- synchronize
- ready_for_review
branches:
- main
schedule:
- cron: 0 0 * * *

# Supersede an in-flight run when a pull request is pushed again. Never cancels a
# main-branch or scheduled run.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

permissions:
contents: read

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Trunk Code Quality
on:
pull_request:
branches: main

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

permissions:
contents: read
Expand Down
Loading