Skip to content
# on:
# push:
# branches:
# - master
# - develop
on: [push]
name: Create issue if pr is merged with cookiecutter label
permissions:
contents: read
issues: write
jobs:
stuff:

Check failure on line 12 in .github/workflows/create_issue_if_coockiecutter.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/create_issue_if_coockiecutter.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: 'pyfar/cookiecutter-pypackage'
ref: 'auto_issue'
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/COOKIECUTTER_ISSUE_TEMPLATE.md
- run: 'echo Created issue number ${{ steps.create-issue.outputs.number }}'
- run: 'echo Created ${{ steps.create-issue.outputs.url }}'