-
Notifications
You must be signed in to change notification settings - Fork 53
34 lines (30 loc) · 977 Bytes
/
Copy pathscala-steward.yml
File metadata and controls
34 lines (30 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Scala Steward
on:
schedule:
# Run every Monday at 00:00 UTC
- cron: '0 0 * * 1'
workflow_dispatch: # Allow manual triggers
permissions:
contents: write
pull-requests: write
jobs:
scala-steward:
runs-on: ubuntu-latest
name: Update dependencies with Scala Steward
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Scala Steward
uses: scala-steward-org/scala-steward-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
author-email: 41898282+github-actions[bot]@users.noreply.github.com
author-name: github-actions[bot]
# Respect .scala-steward.conf in repo root (will be available after checkout)
repos-file: .scala-steward.conf
# Sign commits (optional)
sign-commits: false
# Ignore SNAPSHOT versions
ignore-opts-files: false
# Cache dependencies for faster runs
cache-ttl: 24h