mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
29 lines
605 B
YAML
29 lines
605 B
YAML
name: Plugins Sync
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'Plugins/**'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
sync:
|
|
name: Sync Plugins Folder
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Run file sync
|
|
uses: BetaHuhn/repo-file-sync-action@v1
|
|
with:
|
|
GH_PAT: ${{ secrets.SIMPLYDANNY_PLUGINS_SYNC }}
|
|
IS_FINE_GRAINED: true
|
|
CONFIG_PATH: .github/plugins-sync.yml
|
|
SKIP_PR: true
|
|
COMMIT_PREFIX: 🔄 Workflow in 'realm/SwiftLint'
|