From f5d6af9cfc0c0d04af5183984bd9ab6980278e25 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Thu, 11 Jan 2024 13:19:25 -0500 Subject: Add a workflow to auto-label new PRs with team:viewer. When a PR appears on the QA board, QA wants to know whose team it came from. So every PR on the viewer repo should be labeled with team:viewer. --- .github/workflows/label_pr.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/label_pr.yaml (limited to '.github') diff --git a/.github/workflows/label_pr.yaml b/.github/workflows/label_pr.yaml new file mode 100644 index 0000000000..49c1b10981 --- /dev/null +++ b/.github/workflows/label_pr.yaml @@ -0,0 +1,17 @@ +name: Label PR with team:viewer when first opened +on: + pull_request: + types: + - opened +jobs: + label_pr: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - run: gh pr edit "$NUMBER" --add-label "$LABELS" + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_REPO: ${{ github.repository }} + NUMBER: ${{ github.event.pull_request.number }} + LABELS: "team:viewer" -- cgit v1.2.3 From 36fff90f90571ab2d225a4dbd61d2319e8324fc6 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Thu, 11 Jan 2024 13:50:40 -0500 Subject: Grant write permission for pull requests. --- .github/workflows/label_pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/label_pr.yaml b/.github/workflows/label_pr.yaml index 49c1b10981..68dba7cb07 100644 --- a/.github/workflows/label_pr.yaml +++ b/.github/workflows/label_pr.yaml @@ -7,7 +7,7 @@ jobs: label_pr: runs-on: ubuntu-latest permissions: - issues: write + pull-requests: write steps: - run: gh pr edit "$NUMBER" --add-label "$LABELS" env: -- cgit v1.2.3 From 0730681b8a419d0122a20cc1fe7e520386d0836b Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Fri, 12 Jan 2024 13:48:08 -0500 Subject: Fold PR labeling into existing label.yaml. --- .github/workflows/label.yaml | 15 +++++++++++++++ .github/workflows/label_pr.yaml | 17 ----------------- 2 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 .github/workflows/label_pr.yaml (limited to '.github') diff --git a/.github/workflows/label.yaml b/.github/workflows/label.yaml index 6e41d8aa2d..e19477a533 100644 --- a/.github/workflows/label.yaml +++ b/.github/workflows/label.yaml @@ -13,3 +13,18 @@ jobs: with: configuration-path: .github/labeler.yaml repo-token: "${{ secrets.GITHUB_TOKEN }}" + + label-pr: + if: + ${{ github.event_name == 'opened' && + github.event.pull_request.head.repo.owner.login == 'secondlife' }} + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - run: gh pr edit "$NUMBER" --add-label "$LABELS" + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_REPO: ${{ github.repository }} + NUMBER: ${{ github.event.pull_request.number }} + LABELS: "team:viewer" diff --git a/.github/workflows/label_pr.yaml b/.github/workflows/label_pr.yaml deleted file mode 100644 index 68dba7cb07..0000000000 --- a/.github/workflows/label_pr.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: Label PR with team:viewer when first opened -on: - pull_request: - types: - - opened -jobs: - label_pr: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - run: gh pr edit "$NUMBER" --add-label "$LABELS" - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GH_REPO: ${{ github.repository }} - NUMBER: ${{ github.event.pull_request.number }} - LABELS: "team:viewer" -- cgit v1.2.3 From e2ba2f9c453d4e913b0deb5dfee2a07c55034655 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Fri, 12 Jan 2024 15:36:45 -0500 Subject: Move "team:viewer" label action to labeler.yaml. This avoids the need for a separate job step. --- .github/labeler.yaml | 3 +++ .github/workflows/label.yaml | 15 --------------- 2 files changed, 3 insertions(+), 15 deletions(-) (limited to '.github') diff --git a/.github/labeler.yaml b/.github/labeler.yaml index d31a361baf..6e03801b65 100644 --- a/.github/labeler.yaml +++ b/.github/labeler.yaml @@ -76,3 +76,6 @@ c/cpp: - '**/*.i' - '**/*.inl' - '**/*.y' + +'team:viewer': + - '*' diff --git a/.github/workflows/label.yaml b/.github/workflows/label.yaml index e19477a533..6e41d8aa2d 100644 --- a/.github/workflows/label.yaml +++ b/.github/workflows/label.yaml @@ -13,18 +13,3 @@ jobs: with: configuration-path: .github/labeler.yaml repo-token: "${{ secrets.GITHUB_TOKEN }}" - - label-pr: - if: - ${{ github.event_name == 'opened' && - github.event.pull_request.head.repo.owner.login == 'secondlife' }} - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - run: gh pr edit "$NUMBER" --add-label "$LABELS" - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GH_REPO: ${{ github.repository }} - NUMBER: ${{ github.event.pull_request.number }} - LABELS: "team:viewer" -- cgit v1.2.3