ynput / ops-repo-automation

Collection of automation tools and github-workflows for Ayon related repositories.
0 stars 0 forks source link

New PR should have automatically assigned `Ynteam planning` project #22

Open jakubjezek001 opened 4 days ago

jakubjezek001 commented 4 days ago

Is there an existing issue for this?

Please describe the feature you have in mind and explain what the current shortcomings are?

Currrently every new PR has to have manually assigned Ynteam Project

How would you imagine the implementation of the feature?

It would be awesome if avery new PR would be automatically have assigned Ynteam Planning project.

Are there any labels you wish to add?

Describe alternatives you've considered:

No response

Additional context:

No response

philnewm commented 3 days ago

Thats good stuff :+1: The idea itself is pretty easy to implement since github provides a bunch of built in event triggers like one for pull requests

on:
  pull_request:
    types:
      - opened
    paths:
      - '.github/workflows/**'
      - '.github/CODEOWNERS'
      - 'package*.json'

The bigger challenge here is to implement a standardized approach for all intended repositories. Cause mainting such globally wnated workflows on a per repo basis is simply pointless.

So I see too options here