Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
apgapg committed Mar 23, 2021
1 parent 0dd71be commit 8d9dddc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Insurify
Copyright (c) 2021 Ayush P Gupta

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Asana Git'
description: 'Asana Github Actions'
name: 'Github Asana Action'
description: 'Integrate Github with Asana for auto commenting and task movement'
inputs:
asana-pat:
asana-token:
description: 'Asana Personal Access Token.'
required: true
targets_commit_push:
Expand All @@ -14,8 +14,8 @@ inputs:
description: 'JSON array of objects having project and section where to move current task. Move task only if it exists in target project.'
required: false
branding:
icon: 'chevron-right'
color: 'gray-dark'
icon: 'list'
color: 'blue'
runs:
using: 'node12'
main: 'index.js'
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function handleGitEvent(ASANA_PAT, PULL_REQUEST, EVENT_NAME, COMMITS, TARGETS_CO
try {
const githubContext = github.context;
console.log(JSON.stringify(githubContext));
const ASANA_PAT = core.getInput("asana-pat");
const ASANA_PAT = core.getInput("asana-token");
const TARGETS_COMMIT_PUSH = core.getInput("targets_commit_push");
const TARGETS_PR_RAISE = core.getInput("targets_pr_raise");
const TARGETS_PR_MERGE = core.getInput("targets_pr_merge");
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "github-asana",
"version": "1.0.0",
"version": "3.3.0",
"description": "Action to integrate git with asana",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insurify/github-actions.git"
"url": "git+https://github.com/apgapg/github-asana-action.git"
},
"keywords": [
"github-actions",
"asana",
"git"
],
"author": "Ali Sajid",
"license": "ISC",
"author": "Ayush P Gupta",
"license": "MIT",
"bugs": {
"url": "https://github.com/insurify/github-actions/issues"
"url": "https://github.com/apgapg/github-asana-action/issues"
},
"homepage": "https://github.com/insurify/github-actions#readme",
"homepage": "https://github.com/apgapg/github-asana-action#github-asana-action",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/github": "^1.1.0",
Expand Down

0 comments on commit 8d9dddc

Please sign in to comment.