mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 17:47:26 -05:00
15 lines
432 B
YAML
15 lines
432 B
YAML
name: Remove 'help wanted' label from closed issues
|
|
|
|
on:
|
|
issues:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
remove-help-wanted:
|
|
if: ${{ !contains(github.event.issue.labels.*.name, 'feature') && contains(github.event.issue.labels.*.name, 'help wanted') }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0
|
|
with:
|
|
labels: help wanted
|