forked from DSpace/dspace-angular
-
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.
Merge branch 'main' into ProcessDetailComponent-test-improvemen
- Loading branch information
Showing
15 changed files
with
150 additions
and
71 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,44 @@ | ||
# This workflow will attempt to port a merged pull request to | ||
# the branch specified in a "port to" label (if exists) | ||
name: Port merged Pull Request | ||
|
||
# Only run for merged 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 when the PR comes from a forked repo) | ||
on: | ||
pull_request_target: | ||
types: [ closed ] | ||
branches: | ||
- main | ||
- 'dspace-**' | ||
|
||
permissions: | ||
contents: write # so action can add comments | ||
pull-requests: write # so action can create pull requests | ||
|
||
jobs: | ||
port_pr: | ||
runs-on: ubuntu-latest | ||
# Don't run on closed *unmerged* pull requests | ||
if: github.event.pull_request.merged | ||
steps: | ||
# Checkout code | ||
- uses: actions/checkout@v3 | ||
# Port PR to other branch (ONLY if labeled with "port to") | ||
# See https://github.com/korthout/backport-action | ||
- name: Create backport pull requests | ||
uses: korthout/backport-action@v1 | ||
with: | ||
# Trigger based on a "port to [branch]" label on PR | ||
# (This label must specify the branch name to port to) | ||
label_pattern: '^port to ([^ ]+)$' | ||
# Title to add to the (newly created) port PR | ||
pull_title: '[Port ${target_branch}] ${pull_title}' | ||
# Description to add to the (newly created) port PR | ||
pull_description: 'Port of #${pull_number} by @${pull_author} to `${target_branch}`.' | ||
# Copy all labels from original PR to (newly created) port PR | ||
# NOTE: The labels matching 'label_pattern' are automatically excluded | ||
copy_labels_pattern: '.*' | ||
# Use a personal access token (PAT) to create PR as 'dspace-bot' user. | ||
# A PAT is required in order for the new PR to trigger its own actions (for CI checks) | ||
github_token: ${{ secrets.PR_PORT_TOKEN }} |
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/[email protected] |
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
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
2 changes: 1 addition & 1 deletion
2
src/app/request-copy/deny-request-copy/themed-deny-request-copy.component.ts
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