Bump the npm_and_yarn group across 1 directory with 2 updates #67
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
--- | |
name: Pull Requests | |
on: | |
pull_request: | |
types: [opened, ready_for_review] | |
jobs: | |
pr_created: | |
name: Add pull request to PR board | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add to Drafts column | |
uses: alex-page/github-project-automation-plus@v0.8.1 | |
if: "github.event.pull_request.draft" | |
with: | |
project: TTS Tech Portfolio (Pull Requests) | |
column: Draft/WIP | |
repo-token: ${{ secrets.GH_PROJECT_WORKFLOW_TOKEN }} | |
- name: Add to Review column | |
uses: alex-page/github-project-automation-plus@v0.8.1 | |
if: "!github.event.pull_request.draft" | |
with: | |
project: TTS Tech Portfolio (Pull Requests) | |
column: Review required | |
repo-token: ${{ secrets.GH_PROJECT_WORKFLOW_TOKEN }} |