mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00

This PR adds a GitHub Action that adds datasets-labeled issues (upon opening/labeling) to the Data Team's GitHub project. This should obviate the need for manual issue adding to the project before the start of each sprint.
20 lines
496 B
YAML
20 lines
496 B
YAML
name: Adds issues with "datasets" label to Data Team GitHub project
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- labeled
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add Datasets issues to Data Team project
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
repository-projects: write
|
|
steps:
|
|
- uses: actions/add-to-project@main
|
|
with:
|
|
project-url: https://github.com/orgs/ray-project/projects/31
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
labeled: datasets
|