2020-11-18 12:00:00 +00:00
|
|
|
---
|
2021-03-07 11:21:25 +00:00
|
|
|
name: "Pull Request Triage"
|
2020-11-18 12:00:00 +00:00
|
|
|
on: pull_request_target
|
2021-10-08 16:43:25 +00:00
|
|
|
env:
|
2021-10-11 11:05:34 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-11-12 17:07:44 +00:00
|
|
|
jobs:
|
2021-03-07 11:21:25 +00:00
|
|
|
pr-triage:
|
2020-11-12 17:07:44 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-10-08 16:43:25 +00:00
|
|
|
- name: Assign labels based on modified files
|
2024-01-26 15:59:18 +00:00
|
|
|
# https://github.com/marketplace/actions/labeler?version=v5.0.0
|
2024-01-25 23:57:22 +00:00
|
|
|
uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9
|
2020-11-18 12:00:00 +00:00
|
|
|
with:
|
|
|
|
sync-labels: ''
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
2022-04-18 16:50:52 +00:00
|
|
|
- name: Assign to Dashboard project
|
2023-07-14 11:08:03 +00:00
|
|
|
# https://github.com/marketplace/actions/add-to-github-projects?version=v0.5.0
|
2023-08-08 05:04:59 +00:00
|
|
|
uses: actions/add-to-project@31b3f3ccdc584546fc445612dec3f38ff5edb41c
|
2022-04-18 16:50:52 +00:00
|
|
|
with:
|
2022-10-17 15:50:41 +00:00
|
|
|
project-url: https://github.com/orgs/ceph/projects/2
|
2023-08-14 17:53:11 +00:00
|
|
|
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|
2022-10-17 15:50:41 +00:00
|
|
|
labeled: dashboard
|
2021-10-08 16:43:25 +00:00
|
|
|
- name: Assign milestone based on target brach name
|
2022-10-18 12:50:39 +00:00
|
|
|
# https://github.com/marketplace/actions/pull-request-milestone?version=v1.3.0
|
|
|
|
uses: iyu/actions-milestone@e93115c90ff7bcddee71086e9253f1b6a5f4b48a
|
2021-03-07 11:21:25 +00:00
|
|
|
with:
|
|
|
|
configuration-path: .github/milestone.yml
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|