Skip to content

Commit

Permalink
Merge pull request #23 from MichaelHatherly/mh/kodiak
Browse files Browse the repository at this point in the history
Add kodiak and finalize job to CI
  • Loading branch information
MichaelHatherly authored Oct 6, 2023
2 parents 718650a + b7ccfbd commit c5f103f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ concurrency:
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
finalize:
needs: [test]
runs-on: ubuntu-latest
steps:
- run: exit 1
if: needs.test.result == 'failure' || needs.test.result == 'skipped'

test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
Expand All @@ -23,7 +30,6 @@ jobs:
matrix:
version:
- "1.6"
- "1.8"
- "1.9"
- "nightly"
os:
Expand Down
14 changes: 14 additions & 0 deletions .kodiak.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version = 1

[merge]
delete_branch_on_merge = true
method = "squash"
prioritize_ready_to_merge = true
priority_merge_label = "automerge_priority"

[merge.automerge_dependencies]
usernames = ["dependabot"]
versions = ["minor", "patch"]

[approve]
auto_approve_usernames = ["dependabot", "github-actions", "MichaelHatherly"]

0 comments on commit c5f103f

Please sign in to comment.