mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-12-21 12:44:49 -05:00
Merge pull request '[v9.0/forgejo] chore(ci): set the milestone when a pull request is open' (#6217) from bp-v9.0/forgejo-1f18d8d into v9.0/forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6217 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
commit
d8ca6f0581
1 changed files with 29 additions and 0 deletions
29
.forgejo/workflows/milestone.yml
Normal file
29
.forgejo/workflows/milestone.yml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# Copyright 2024 The Forgejo Authors
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
#
|
||||||
|
# This workflow is triggered on pull_request_target and runs from
|
||||||
|
# the forgejo branch so that it does not need to be backported.
|
||||||
|
# If it was triggered on pull_request, it would have to exist on all
|
||||||
|
# stable branches.
|
||||||
|
#
|
||||||
|
name: milestone
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
set:
|
||||||
|
if: vars.ROLE == 'forgejo-coding'
|
||||||
|
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 }}
|
Loading…
Reference in a new issue