* 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>
29 lines
1.1 KiB
YAML
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"
|