1
0
mirror of synced 2026-01-04 18:04:31 -05:00
Files
airbyte/.github/workflows/project.yaml
Abhi Vaidyanatha f2fa59ff92 Update docs request template to request that people add docs issues t… (#3606)
* Update docs request template to request that people add docs issues to the docs project.

* Use auto assign scripts to assign docs issues and PRs to project.

* Run gradle format

Co-authored-by: Abhi Vaidyanatha <abhivaidyanatha@Abhis-MacBook-Pro.local>
2021-06-01 16:35:18 -06:00

29 lines
1.1 KiB
YAML

# https://github.com/marketplace/actions/assign-to-one-project#:~:text=GitHub%20Action%20for%20Assign%20to,columns%20in%20your%20project%20dashboard.
name: Auto Assign to Airbyte Github Project
on:
issues:
types: [opened]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to Airbyte Github Project
steps:
- name: Assign NEW issues and NEW pull requests to airbyte github project
uses: srggrs/assign-one-project-github-action@1.2.0
if: github.event.action == 'opened'
with:
project: "https://github.com/airbytehq/airbyte/projects/1"
column_name: "Backlog"
- name: Assign documentation issues to the Documentation Roadmap project
uses: srggrs/assign-one-project-github-action@1.2.0
if: |
contains(github.event.issue.labels.*.name, 'area/documentation') ||
contains(github.event.pull_request.labels.*.name, 'area/documentation')
with:
project: "https://github.com/airbytehq/airbyte/projects/4"
column_name: "Needs Triage"