Add a workflow to lock closed issue/PRs (#52) #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sync common files to other repos. | |
# Adjust which files are synced in the .github/sync.yml file. | |
name: Sync Files to repos | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Run GitHub File Sync | |
uses: BetaHuhn/repo-file-sync-action@475a6502288f55cc52e951bdd1c44d7981218478 | |
with: | |
GH_PAT: ${{ secrets.REALM_CI_PAT }} | |
PR_LABELS: | | |
no-changelog | |
no-jira-ticket | |
DRY_RUN: false | |
GIT_USERNAME: realm-ci | |
GIT_EMAIL: [email protected] |