Skip to content

Commit

Permalink
Merge branch 'fix-multiple-project-columns'
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Page committed Mar 25, 2020
2 parents 67054ba + e2a5072 commit fdffc76
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.1.3
- uses: alex-page/github-project-automation-plus@v0.2.0
with:
project: Backlog
column: Triage
Expand All @@ -51,7 +51,7 @@ jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.1.3
- uses: alex-page/github-project-automation-plus@v0.2.0
with:
project: Backlog
column: To do
Expand Down Expand Up @@ -94,6 +94,7 @@ GraphqlError: Resource protected by organization SAML enforcement. You must gran
## Release History
- v0.2.0 - Restructure project, add tests, change add and move logic
- v0.1.3 - Exact match for project names
- v0.1.2 - Fix action not running for a card that exists in multiple projects
- v0.1.1 - Document type filter so action runs once
Expand Down
93 changes: 46 additions & 47 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,48 @@
{
"name": "github-project-automation-plus",
"version": "0.1.3",
"description": "🤖 Automate GitHub Project cards with any webhook event",
"private": true,
"main": "dist/index.js",
"scripts": {
"watch": "ncc build src/index.js --watch --minify",
"build": "ncc build src/index.js --minify",
"test": "ava && xo",
"lint:fix": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-page/automate-project-columns.git"
},
"keywords": [
"github-actions",
"github-projects",
"issues",
"pulls",
"automation",
"columns"
],
"author": "Alex Page <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-page/automate-project-columns/issues"
},
"homepage": "https://github.com/alex-page/automate-project-columns#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.20.4",
"ava": "^3.5.1",
"husky": "^3.0.5",
"xo": "^0.27.2"
},
"files": [
"dist/index.js"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./dist/index.js"
}
}
"name": "github-project-automation-plus",
"version": "0.2.0",
"description": "🤖 Automate GitHub Project cards with any webhook event",
"private": true,
"main": "dist/index.js",
"scripts": {
"watch": "ncc build src/index.js --watch --minify",
"build": "ncc build src/index.js --minify",
"test": "ava && xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-page/automate-project-columns.git"
},
"keywords": [
"github-actions",
"github-projects",
"issues",
"pulls",
"automation",
"columns"
],
"author": "Alex Page <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-page/automate-project-columns/issues"
},
"homepage": "https://github.com/alex-page/automate-project-columns#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.20.4",
"ava": "^3.5.1",
"husky": "^3.0.5",
"xo": "^0.27.2"
},
"files": [
"dist/index.js"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./dist/index.js"
}
}
}

0 comments on commit fdffc76

Please sign in to comment.