Skip to content

GitHub Template Rename #4

GitHub Template Rename

GitHub Template Rename #4

name: GitHub Template Rename
on:
workflow_dispatch:
inputs:
from-name:
type: string
description: From name
default: UnoDevContainerApp
to-name:
type: string
description: To name
required: true
permissions: pull-requests

Check failure on line 15 in .github/workflows/github-template-rename.yml

View workflow run for this annotation

GitHub Actions / GitHub Template Rename

Invalid workflow file

The workflow is not valid. .github/workflows/github-template-rename.yml (Line: 15, Col: 14): Unexpected value 'pull-requests'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: kota65535/github-template-rename-action@v1
with:
from-name: ${{ github.event.inputs.from-name }}
to-name: ${{ github.event.inputs.to-name }}