OpenAPI generated code at 2024-05-10T20:26:02Z #199
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: Auto Assign to CLIB Project | ||
on: | ||
issues: | ||
types: [opened] | ||
pull_request: | ||
types: [opened] | ||
env: | ||
MY_GITHUB_TOKEN: ${{ secrets.CLIB_AUTOMATION_TOKEN } | ||
Check failure on line 9 in .github/workflows/add_to_project.yml
|
||
jobs: | ||
assign_one_project: | ||
runs-on: ubuntu-latest | ||
name: Assign to One Project | ||
steps: | ||
- name: Assign NEW issues and NEW pull requests to project 1 | ||
uses: srggrs/assign-one-project-github-action@1.2.0 | ||
if: github.event.action == 'opened' | ||
with: | ||
project: 'https://github.com/orgs/plaid/projects/1' | ||
column_name: 'Needs Investigation' |