21 lines
688 B
YAML
21 lines
688 B
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"
|