packer/.github/workflows/issue-migrator.yml
hashicorp-tsccr[bot] 3ac1179841
Result of tsccr-helper -pin-all-workflows . (#12381)
Co-authored-by: hashicorp-tsccr[bot] <hashicorp-tsccr[bot]@users.noreply.github.com>
2023-04-27 14:55:22 -04:00

27 lines
929 B
YAML

name: Migrate Remote Plugin Issues
on:
issues:
types: [labeled]
permissions:
issues: write
jobs:
PluginSplit:
if: startsWith(github.event.label.name, 'remote-plugin/')
runs-on: ubuntu-latest
steps:
- uses: bflad/action-migrate-issue@main # TSCCR: no entry for repository "bflad/action-migrate-issue"
with:
source-issue-comment: |
This issue has been migrated to {target-issue-url} due to the [Packer Plugin split](https://github.com/hashicorp/packer/issues/8610#issuecomment-770034737).
Please follow the new issue for updates.
source-issue-skip-label-names: |
core
new-plugin-contribution
website
target-repository-name-prefix: 'packer-plugin-'
target-repository-name-prefix-label-prefix: 'remote-plugin/'
target-repository-github-token: ${{ secrets.PLUGIN_REPO_GITHUB_TOKEN }}