]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
.github: add dashboard PRs to Dashboard project 43472/head
authorErnesto Puerta <epuertat@redhat.com>
Fri, 8 Oct 2021 16:43:25 +0000 (18:43 +0200)
committerErnesto Puerta <epuertat@redhat.com>
Fri, 8 Oct 2021 16:43:25 +0000 (18:43 +0200)
This action automatically adds PRs with 'dashboard' label to the
'Dashboard' project (https://github.com/ceph/ceph/projects/6).

Signed-off-by: Ernesto Puerta <epuertat@redhat.com>
.github/workflows/pr-triage.yml

index 31791d4aef5755edbe83986d41c5b31d21a87f56..0154334b7b9ca07fa0f844a7b50d593bf9555d88 100644 (file)
@@ -1,15 +1,24 @@
 ---
 name: "Pull Request Triage"
 on: pull_request_target
+env:
+  MY_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 jobs:
   pr-triage:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/labeler@9794b1493b6f1fa7b006c5f8635a19c76c98be95
+      - name: Assign labels based on modified files
+        uses: actions/labeler@9794b1493b6f1fa7b006c5f8635a19c76c98be95
         with:
           sync-labels: ''
           repo-token: "${{ secrets.GITHUB_TOKEN }}"
-      - uses: iyu/actions-milestone@dbf7e5348844c9ddc6b803a5721b85fa70fe3bb9
+      - name: Assign milestone based on target brach name
+        uses: iyu/actions-milestone@dbf7e5348844c9ddc6b803a5721b85fa70fe3bb9
         with:
           configuration-path: .github/milestone.yml
           repo-token: "${{ secrets.GITHUB_TOKEN }}"
+      - name: Assign to Dashboard project
+        uses: srggrs/assign-one-project-github-action@65a8ddab497df42ef268001e67bbf976f8fd39e1
+        if: contains(github.event.pull_request.labels.*.name, 'dashboard')
+        with:
+          project: https://github.com/ceph/ceph/projects/6