CREATE_PR doesnt seem to be working with on:push
#24
This file contains 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: | |
issues: | |
types: [opened] | |
name: Issue opened | |
jobs: | |
assign: | |
name: Assign issues to project | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: technote-space/load-config-action@v1 | |
with: | |
CONFIG_FILENAME: workflow-settings.json, workflow-details.json | |
IGNORE_WARNING: 'true' | |
- uses: technote-space/create-project-card-action@v1 | |
with: | |
PROJECT: ${{ env.PROJECT }} | |
COLUMN: ${{ env.ISSUE_COLUMN }} | |
assignAuthor: | |
name: Assign author to issue | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: technote-space/assign-author@v1 |