-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2369 from tdonohue/port_2358_2359
Port recent GitHub Actions changes to dspace-7_x branch
- Loading branch information
Showing
5 changed files
with
92 additions
and
59 deletions.
There are no files selected for viewing
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
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
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
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,24 @@ | ||
# This workflow runs whenever a new pull request is created | ||
name: Pull Request opened | ||
|
||
# Only run for newly opened PRs against the "main" or maintenance branches | ||
# We allow this to run for `pull_request_target` so that github secrets are available | ||
# (This is required to assign a PR back to the creator when the PR comes from a forked repo) | ||
on: | ||
pull_request_target: | ||
types: [ opened ] | ||
branches: | ||
- main | ||
- 'dspace-**' | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
automation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Assign the PR to whomever created it. This is useful for visualizing assignments on project boards | ||
# See https://github.com/toshimaru/auto-author-assign | ||
- name: Assign PR to creator | ||
uses: toshimaru/auto-author-assign@v1.6.2 |