add specific ref to checkout #7
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
name: sync-issues | |
on: | |
workflow_dispatch: | |
push: | |
issues: | |
types: | |
[ | |
opened, | |
deleted, | |
transferred, | |
closed, | |
reopened, | |
assigned, | |
unassigned, | |
labeled, | |
unlabeled, | |
] | |
jobs: | |
run-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c60a92eb51acca2de954c3fe8ff9b67de265c56f | |
- uses: ./issues_sync_action | |
env: | |
GITHUB_TOKEN: ${{ secrets.ISSUE_SYNC_TOKEN }} | |
with: | |
repo_target: "MixedRealityToolkit/MixedRealityToolkit-Unity" # The target repository | |
only_sync_on_label: "MRTK3" # Only syncs issues with this label set | |
only_sync_main_issue: false # Excludes comments |