github.com/hashicorp/packer@v1.14.3/.github/workflows/issue-migrator.yml (about) 1 name: Migrate Remote Plugin Issues 2 3 on: 4 issues: 5 types: [labeled] 6 7 permissions: 8 issues: write 9 10 jobs: 11 PluginSplit: 12 if: startsWith(github.event.label.name, 'remote-plugin/') 13 runs-on: ubuntu-latest 14 steps: 15 - uses: bflad/action-migrate-issue@2e049d822b08e67d25b938343227051518f14d9a # v1.0.2 16 with: 17 source-issue-comment: | 18 This issue has been migrated to {target-issue-url} due to the [Packer Plugin split](https://github.com/hashicorp/packer/issues/8610#issuecomment-770034737). 19 20 Please follow the new issue for updates. 21 source-issue-skip-label-names: | 22 core 23 new-plugin-contribution 24 website 25 target-repository-name-prefix: 'packer-plugin-' 26 target-repository-name-prefix-label-prefix: 'remote-plugin/' 27 target-repository-github-token: ${{ secrets.PLUGIN_REPO_GITHUB_TOKEN }}