Skip to content

.github/workflows/add-help-wanted-labels.yml #23605

.github/workflows/add-help-wanted-labels.yml

.github/workflows/add-help-wanted-labels.yml #23605

on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 * * * *'
workflow_dispatch: # Enable manual runs of the bot
jobs:
add_help_wanted_labels:
runs-on: ubuntu-latest
name: Add help wanted labels
steps:
- name: Add help wanted labels
uses: rubyforgood/[email protected]
id: add-help-wanted-labels
with:
columns_labels: >
[
{
"column_name": "To do",
"labels": ["Help Wanted"],
"project_name": "Essentials Project Board"
}
]
token: ${{secrets.GITHUB_TOKEN}}