Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project automation: Rewrite actions using JavaScript #17080

Merged
merged 8 commits into from
Aug 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/actions/assign-fixed-issues/Dockerfile

This file was deleted.

60 changes: 0 additions & 60 deletions .github/actions/assign-fixed-issues/entrypoint.sh

This file was deleted.

18 changes: 0 additions & 18 deletions .github/actions/first-time-contributor/Dockerfile

This file was deleted.

43 changes: 0 additions & 43 deletions .github/actions/first-time-contributor/entrypoint.sh

This file was deleted.

18 changes: 0 additions & 18 deletions .github/actions/milestone-it/Dockerfile

This file was deleted.

109 changes: 0 additions & 109 deletions .github/actions/milestone-it/entrypoint.sh

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/pull-request-automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: pull_request
name: Pull request automation
talldan marked this conversation as resolved.
Show resolved Hide resolved

jobs:
pull-request-automation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
# Changing into the action's directory and running `npm install` is much
# faster than a full project-wide `npm ci`.
- run: cd packages/project-management-automation && npm install
- uses: ./packages/project-management-automation
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/pull_request-milestone-merged-pull-requests.yml

This file was deleted.

6 changes: 6 additions & 0 deletions docs/manifest-devhub.json
Original file line number Diff line number Diff line change
Expand Up @@ -1349,6 +1349,12 @@
"markdown_source": "../packages/priority-queue/README.md",
"parent": "packages"
},
{
"title": "@wordpress/project-management-automation",
"slug": "packages-project-management-automation",
"markdown_source": "../packages/project-management-automation/README.md",
"parent": "packages"
},
{
"title": "@wordpress/redux-routine",
"slug": "packages-redux-routine",
Expand Down
Loading