- Add Forgejo workflow files (.forgejo/workflows/) - Add Gitea templates (.gitea/ISSUE_TEMPLATE/, .gitea/PULL_REQUEST_TEMPLATE.md) - Remove legacy .github/ workflows and templates
22 lines
409 B
YAML
22 lines
409 B
YAML
name: Label Pull Request
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
label:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Label PR
|
|
uses: actions/labeler@v4
|
|
with:
|
|
repo-token: ${{ secrets.GITEA_TOKEN }}
|
|
configuration-path: .gitea/labeler.yml
|
|
sync-labels: true
|