mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-27 05:28:22 +00:00
Merge pull request #1643 from btat/workflow-create-issue-ports
Add Workflow: create issue to track community <-> prod porting needs
This commit is contained in:
@@ -0,0 +1,29 @@
|
|||||||
|
name: Create issue to port to Product docs
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create_issue:
|
||||||
|
if: github.event.pull_request.merged == true && contains( github.event.pull_request.labels.*.name, 'port/community-product')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Create issue to track porting between Community and Product docs
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
run: |
|
||||||
|
gh issue create \
|
||||||
|
--repo rancher/rancher-docs \
|
||||||
|
--title 'Port Community docs PR #${{github.event.pull_request.number}}: ${{github.event.pull_request.title}}' \
|
||||||
|
--body 'Reference: https://github.com/${{github.repository}}/pull/${{github.event.pull_request.number}}' \
|
||||||
|
--label port/community-product
|
||||||
Reference in New Issue
Block a user