mirror of
https://github.com/lukaszraczylo/git-velocity.git
synced 2026-06-05 22:43:56 +00:00
21 lines
408 B
YAML
21 lines
408 B
YAML
name: Autoupdate go.mod and go.sum
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 3 * * *"
|
|
|
|
permissions:
|
|
contents: write
|
|
actions: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
autoupdate:
|
|
uses: lukaszraczylo/shared-actions/.github/workflows/go-autoupdate.yaml@main
|
|
with:
|
|
go-version: "1.24"
|
|
release-workflow: "release.yml"
|
|
secrets:
|
|
pat-token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
|