summaryrefslogtreecommitdiffstats
path: root/.forgejo/workflows/milestone.yml
blob: 56bd7ba28dd9a91c33469da13f9a80be5c956572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2024 The Forgejo Authors
# SPDX-License-Identifier: MIT
#
name: milestone

on:
  pull_request_target:
    types:
      - closed

jobs:
  set:
    if: vars.ROLE == 'forgejo-coding' && github.event.pull_request.merged
    runs-on: docker
    container:
      image: 'code.forgejo.org/oci/ci:1'
    steps:
      - uses: https://code.forgejo.org/forgejo/set-milestone@v1.0.0
        with:
          forgejo: https://codeberg.org
          repository: forgejo/forgejo
          token: ${{ secrets.SET_MILESTONE_TOKEN }}
          pr-number: ${{ github.event.pull_request.number }}
          verbose: ${{ vars.SET_MILESTONE_VERBOSE }}