Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ahms5 committed Apr 10, 2024
1 parent 4b225a0 commit a4c4645
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/cookiecutter_issue_template.md
@@ -0,0 +1,7 @@
---
title: Someone just pushed
assignees:
labels: enhancement
---
Someone just pushed, oh no! Here's who did it: {{ payload.sender.login }}.
PR #{{ pullRequest.pull_number }}
21 changes: 21 additions & 0 deletions .github/workflows/create_issue_if_coockiecutter.yml
@@ -0,0 +1,21 @@
# on:
# push:
# branches:
# - master
# - develop
name: Create issue if pr is merged with cookiecutter label
permissions:
contents: read
issues: write
jobs:
stuff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: 'pyfar/cookiecutter-pypackage'
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/cookiecutter_issue_template.md

0 comments on commit a4c4645

Please sign in to comment.