@pipedream/pivotal_tracker 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
# Overview
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
8. Utilize the API to integrate with third-party applications like Office 365, Slack, and Salesforce.
|
|
3
|
+
Pipedream's integration with the Pivotal Tracker API turns your project management into a powerhouse of automation and connectivity. It allows you to orchestrate workflows that can respond to changes in your projects, stories, and tasks in real-time. For instance, you can sync project updates with other tools, extract metrics for reporting, or even streamline notification systems to keep your entire team in the loop effortlessly.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Automated Task Distribution**: When a new story is created in Pivotal Tracker, Pipedream triggers a workflow that automatically assigns tasks to developers based on their current workload or expertise, which is tracked in a separate database or app like Airtable.
|
|
8
|
+
|
|
9
|
+
- **Slack Project Updates**: Keep your team informed with real-time alerts. Set up a workflow where any status changes in Pivotal Tracker stories push notifications to a dedicated Slack channel, ensuring that everyone is aware of project progress without needing to leave their communication platform.
|
|
10
|
+
|
|
11
|
+
- **Sprint Report Generation**: At the end of each sprint, Pipedream can collate completed stories and tasks from Pivotal Tracker, format them into a comprehensive report, and then send this report via email or store it in a shared Google Drive folder for stakeholders' review.
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
name: "Create Project",
|
|
6
6
|
key: "pivotal_tracker-create-project",
|
|
7
7
|
description: "Create a new project. [See the docs here](https://www.pivotaltracker.com/help/api/rest/v5#projects_post)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.2",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
pivotalTracker,
|
|
@@ -6,7 +6,12 @@ export default {
|
|
|
6
6
|
name: "Create Story",
|
|
7
7
|
key: "pivotal_tracker-create-story",
|
|
8
8
|
description: "Create a new story in a project. [See the docs here](https://www.pivotaltracker.com/help/api/rest/v5#projects_project_id_stories_post)",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.2",
|
|
10
|
+
annotations: {
|
|
11
|
+
destructiveHint: false,
|
|
12
|
+
openWorldHint: true,
|
|
13
|
+
readOnlyHint: false,
|
|
14
|
+
},
|
|
10
15
|
type: "action",
|
|
11
16
|
props: {
|
|
12
17
|
pivotalTracker,
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import pivotal_tracker from "../../pivotal_tracker.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
key: "pivotal_tracker-list-project-id-options",
|
|
5
|
+
name: "List Project ID Options",
|
|
6
|
+
description: "Retrieves available options for the Project ID field.",
|
|
7
|
+
version: "0.0.1",
|
|
8
|
+
type: "action",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
14
|
+
props: {
|
|
15
|
+
pivotal_tracker,
|
|
16
|
+
},
|
|
17
|
+
async run({ $ }) {
|
|
18
|
+
const options = await pivotal_tracker.propDefinitions.projectId.options
|
|
19
|
+
.call(this.pivotal_tracker, {});
|
|
20
|
+
$.export("$summary", `Successfully retrieved ${options.length} option${
|
|
21
|
+
options.length === 1
|
|
22
|
+
? ""
|
|
23
|
+
: "s"
|
|
24
|
+
}`);
|
|
25
|
+
return options;
|
|
26
|
+
},
|
|
27
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/pivotal_tracker",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Pipedream Pivotal Tracker Components",
|
|
5
5
|
"main": "pivotal_tracker.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|