Bug 1390938: only use one top-level heading; r?bstack draft
authorDustin J. Mitchell <dustin@mozilla.com>
Wed, 16 Aug 2017 16:26:58 +0000
changeset 647594 b4ad3065397a040763b95d4735f7dd6a0bf047a0
parent 647460 6ebc251bd288c268b020815025b05854ccde5c08
child 726566 ab55d9f26e84837c4aa63d4aa78311fadf09d7cb
push id74470
push userdmitchell@mozilla.com
push dateWed, 16 Aug 2017 16:27:14 +0000
reviewersbstack
bugs1390938
milestone57.0a1
Bug 1390938: only use one top-level heading; r?bstack MozReview-Commit-ID: DKRdlCx6Ng8
taskcluster/docs/actions.rst
--- a/taskcluster/docs/actions.rst
+++ b/taskcluster/docs/actions.rst
@@ -16,18 +16,18 @@ At a very high level, the process looks 
    re-trigger a test case.
 
  * The user interface follows the action description to carry out the action.
    In most cases (``action.kind == 'task'``), that entails creating an "action
    task", including the provided information. That action task is responsible
    for carrying out the named action, and may create new sub-tasks if necessary
    (for example, to re-trigger a task).
 
-Action Task Implementation
-==========================
+Defining Action Tasks
+---------------------
 
 There are two options for defining actions: creating a callback action, or
 creating a custom action task.  A callback action automatically defines an
 action task that will invoke a Python function of your devising.
 
 A custom action task is an arbitrary task definition that will be created
 directly.  In cases where the callback would simply call ``queue.createTask``,
 a custom action task can be more efficient.