Create SECURITY.md #61
Workflow file for this run
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/[email protected] | |
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/[email protected] | |
if: "!github.event.pull_request.draft" | |
with: | |
project: TTS Tech Portfolio (Pull Requests) | |
column: Review required | |
repo-token: ${{ secrets.GH_PROJECT_WORKFLOW_TOKEN }} |