Skip to content

Commit

Permalink
Revert "add issue"
Browse files Browse the repository at this point in the history
This reverts commit bcb4ea9.
  • Loading branch information
ahms5 committed Apr 10, 2024
1 parent bcb4ea9 commit 272ccf4
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/create_issue_if_coockiecutter.yml
Expand Up @@ -4,17 +4,24 @@ on:
- master
- develop
- cookiecutter_create_issue
name: Open new issue

# on: [push]
name: Create issue if pr is merged with cookiecutter label
jobs:
open-issue:
runs-on: ubuntu-latest
stuff:
permissions:
contents: read
issues: write
name: print-token
environment: test
runs-on: ubuntu-latest
steps:
- run: |
gh issue --repo pyfar/cookiecutter-pypackage \
create --title "Issue title" --body "Issue body"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
with:
repository: 'pyfar/cookiecutter-pypackage'
ref: 'auto_issue'
- uses: dacbd/create-issue-action@v2
with:
title: Apply changes in coockiecutter
token: ${{ github.token }}
owner: pyfar
repo: 'cookiecutter-pypackage'

0 comments on commit 272ccf4

Please sign in to comment.