port-upstream #52
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: needs port upstream | |
on: | |
repository_dispatch: | |
types: [port-upstream] | |
permissions: | |
issues: write | |
jobs: | |
create-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: create issue | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
github.rest.issues.create({ | |
owner: 'nuxt', | |
repo: 'bridge', | |
title: 'Need to port from upstream', | |
labels: ['upstream'], | |
body: `Upstream has been changed. | |
Please check the changes and port them. | |
## Pull Request | |
- ${{github.event.client_payload.url}}`, | |
}) |