forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project automation: Rewrite actions using JavaScript (WordPress#17080)
* Project automation: Rewrite actions using JavaScript * Project automation: Don't transpile or install all dependencies * Project automation: pull-request-automation -> project-management-automation * Project automation: Add explanatory comment for `npm install` hack * Project automation: Add debug statements * Project automation: Don't use GitHub's debug() function * Project automation: Use `payload` in tasks, not `context` * Project automation: Link to the relevant GitHub documentation
- Loading branch information
1 parent
a2d0609
commit b89271b
Showing
25 changed files
with
799 additions
and
302 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
on: pull_request | ||
name: Pull request automation | ||
|
||
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 }} |
12 changes: 0 additions & 12 deletions
12
...request-add-the-first-time-contributor-label-to-prs-opened-by-first-time-contributors.yml
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
.github/workflows/pull_request-assign-fixed-issues-when-pull-request-opened.yml
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
.github/workflows/pull_request-milestone-merged-pull-requests.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.