mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
31 lines
751 B
YAML
31 lines
751 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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
- name: Run file sync
|
|
uses: BetaHuhn/repo-file-sync-action@8b92be3375cf1d1b0cd579af488a9255572e4619 # v1.21.1
|
|
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'
|