mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-12-22 12:54:53 -05:00
7259d3b73f
pull_request_target runs from the target branch, not the default branch
(cherry picked from commit bf9e19cc21
)
24 lines
605 B
YAML
24 lines
605 B
YAML
# Copyright 2024 The Forgejo Authors
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
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 }}
|