Skip to content

Commit

Permalink
chore: configure dependabot + GitHub Actions concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed Mar 29, 2023
1 parent 1e451dd commit 87dce6c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2

updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
name: CI

on:
schedule:
# Every sunday at 02:00
- cron: 0 2 * * 0
pull_request:
push:
branches:
- main
- '[0-9].[0-9]'
tags:
- '*'
pull_request: ~
schedule:
# Every Sunday at 02:00
- cron: 0 2 * * 0
workflow_dispatch: ~

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
tests:
Expand Down

0 comments on commit 87dce6c

Please sign in to comment.