mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
22 lines
388 B
YAML
22 lines
388 B
YAML
name: "Pull Request Labeler"
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'debank'
|
|
pull_request:
|
|
branches:
|
|
- 'debank'
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: ./
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v3
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/labeler.yml
|