Skip to content

Commit c2f8425

Browse files
authored
Merge pull request #21 from wp-cli/fix-github-labels
Fix GitHub label generation
2 parents 55c299a + 18699ff commit c2f8425

File tree

4 files changed

+58
-27
lines changed

4 files changed

+58
-27
lines changed

.github/settings.yml

Lines changed: 38 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,40 @@
11
# Used by Probot Settings: https://probot.github.io/apps/settings/
22
repository:
3-
description: Manage WP-Cron events and schedules.
4-
labels:
5-
- name: scope:documentation
6-
color: 0e8a16
7-
- name: scope:testing
8-
color: 5319e7
9-
- name: good-first-issue
10-
color: eb6420
11-
- name: state:unconfirmed
12-
color: bfe5bf
13-
- name: state:unsupported
14-
color: bfe5bf
15-
- name: command:cron-test
16-
color: c5def5
17-
- name: command:cron-event-delete
18-
color: c5def5
19-
- name: command:cron-event-list
20-
color: c5def5
21-
- name: command:cron-event-run
22-
color: c5def5
23-
- name: command:cron-event-schedule
24-
color: c5def5
25-
- name: command:cron-schedule-list
26-
color: c5def5
3+
description: Tests, runs, and deletes WP-Cron events; manages WP-Cron schedules.
4+
labels:
5+
- name: bug
6+
color: fc2929
7+
- name: scope:documentation
8+
color: 0e8a16
9+
- name: scope:testing
10+
color: 5319e7
11+
- name: good-first-issue
12+
color: eb6420
13+
- name: help-wanted
14+
color: 159818
15+
- name: maybelater
16+
color: c2e0c6
17+
- name: state:unconfirmed
18+
color: bfe5bf
19+
- name: state:unsupported
20+
color: bfe5bf
21+
- name: wontfix
22+
color: c2e0c6
23+
- name: command:cron
24+
color: c5def5
25+
- name: command:cron-test
26+
color: c5def5
27+
- name: command:cron-event
28+
color: c5def5
29+
- name: command:cron-event-delete
30+
color: c5def5
31+
- name: command:cron-event-list
32+
color: c5def5
33+
- name: command:cron-event-run
34+
color: c5def5
35+
- name: command:cron-event-schedule
36+
color: c5def5
37+
- name: command:cron-schedule
38+
color: c5def5
39+
- name: command:cron-schedule-list
40+
color: c5def5

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
wp-cli/cron-command
22
===================
33

4-
Manage WP-Cron events and schedules.
4+
Tests, runs, and deletes WP-Cron events; manages WP-Cron schedules.
55

66
[![Build Status](https://travis-ci.org/wp-cli/cron-command.svg?branch=master)](https://travis-ci.org/wp-cli/cron-command)
77

@@ -11,6 +11,22 @@ Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contr
1111

1212
This package implements the following commands:
1313

14+
### wp cron
15+
16+
Tests, runs, and deletes WP-Cron events; manages WP-Cron schedules.
17+
18+
~~~
19+
wp cron
20+
~~~
21+
22+
**EXAMPLES**
23+
24+
# Test WP Cron spawning system
25+
$ wp cron test
26+
Success: WP-Cron spawning is working as expected.
27+
28+
29+
1430
### wp cron test
1531

1632
Tests the WP Cron spawning system and reports back its status.

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-cli/cron-command",
3-
"description": "Manage WP-Cron events and schedules.",
3+
"description": "Tests, runs, and deletes WP-Cron events; manages WP-Cron schedules.",
44
"type": "wp-cli-package",
55
"homepage": "https://github.com/wp-cli/cron-command",
66
"support": {
@@ -31,6 +31,7 @@
3131
},
3232
"bundled": true,
3333
"commands": [
34+
"cron",
3435
"cron test",
3536
"cron event",
3637
"cron event delete",

src/Cron_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Tests, runs, and deletes WP-Cron events and manages WP-Cron schedules.
4+
* Tests, runs, and deletes WP-Cron events; manages WP-Cron schedules.
55
*
66
* ## EXAMPLES
77
*

0 commit comments

Comments
 (0)