mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
[Datasets] [GitHub] Adds GitHub Action for adding Datasets-labeled issues to Data Team project (#26127)
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.
This commit is contained in:
parent
1a8fd8a72b
commit
e19a66fc83
1 changed files with 20 additions and 0 deletions
20
.github/workflows/data_team_project.yml
vendored
Normal file
20
.github/workflows/data_team_project.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
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
|
Loading…
Add table
Reference in a new issue