Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Add Recently Created Pull Requests and/or Issues to Project Column
on:
pull_request:
types: [opened]
issues:
types: [opened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: CIRCLECI-GWP/github-project-automation-plus@v1
with:
project: Maintenance
column: To do
repo-token: ${{ secrets.PROJECT_ADMIN_TOKEN }}
if: "contains(github.head_ref, 'dependencies') && github.event_name == 'pull_request'"
- uses: CIRCLECI-GWP/github-project-automation-plus@v1
with:
project: Maintenance
column: In progress
repo-token: ${{ secrets.PROJECT_ADMIN_TOKEN }}
if: "!contains(github.head_ref, 'dependencies') && github.event_name == 'pull_request'"
- uses: CIRCLECI-GWP/github-project-automation-plus@v1
with:
project: Maintenance
column: To do (Others)
repo-token: ${{ secrets.PROJECT_ADMIN_TOKEN }}
if: "github.event_name == 'issues'"