Update reference to sofar example #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request: | |
| types: [ labeled ] | |
| name: Create issue if pr gets a cookiecutter label | |
| jobs: | |
| stuff: | |
| permissions: | |
| contents: read | |
| issues: write | |
| name: create issue | |
| environment: test | |
| if: github.event.label.name == 'cookiecutter' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| repository: 'pyfar/cookiecutter-pypackage' | |
| - uses: dacbd/create-issue-action@v2 | |
| with: | |
| title: ${{ github.event.pull_request.title }} | |
| token: ${{ secrets.cookiecutter_PAT }} | |
| owner: pyfar | |
| repo: cookiecutter-pypackage | |
| body: | | |
| apply changes from https://github.com/${{ github.repository }}/pull/${{ github.event.number }} |