Update the Avni connector #31
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
# https://github.com/marketplace/actions/assign-to-one-project#:~:text=GitHub%20Action%20for%20Assign%20to,columns%20in%20your%20project%20dashboard. | |
name: Assign Issue 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 documentation issues to the Documentation Roadmap project | |
uses: srggrs/[email protected] | |
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" | |
- name: Assign New Community Issues to Github Project | |
uses: srggrs/[email protected] | |
if: contains(github.event.issue.labels.*.name, 'community') | |
with: | |
project: "https://github.com/airbytehq/airbyte/projects/16" | |
column_name: "To do" | |
- name: Assign New Community PR to Github Project | |
uses: srggrs/[email protected] | |
if: contains(github.event.pull_request.labels.*.name, 'community') | |
with: | |
project: "https://github.com/airbytehq/airbyte/projects/15" | |
column_name: "To do" |