Files
maven-dependency-submission…/.github/workflows/sync-fork.yml
T
Henri Maurer bc7ed6e727
Publish Executables / publish (push) Has been cancelled
github.token
2024-06-18 16:25:23 +01:00

16 lines
324 B
YAML

name: Sync fork
on:
schedule:
# Daily at 4:24am
- cron: "24 4 * * *"
workflow_dispatch: {}
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- run: gh repo sync actions/maven-dependency-submission-action -b main
env:
GH_TOKEN: ${{ github.token }}