Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/get-overview-of-pull-requests-action
GitHub action: Getting Overview of pull requests
https://github.com/bbonkr/get-overview-of-pull-requests-action
github github-actions hacktoberfest typescript
Last synced: 25 days ago
JSON representation
GitHub action: Getting Overview of pull requests
- Host: GitHub
- URL: https://github.com/bbonkr/get-overview-of-pull-requests-action
- Owner: bbonkr
- License: mit
- Created: 2023-07-28T07:44:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-06T04:20:59.000Z (about 1 month ago)
- Last Synced: 2024-10-11T00:17:23.483Z (27 days ago)
- Topics: github, github-actions, hacktoberfest, typescript
- Language: TypeScript
- Homepage:
- Size: 1.26 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get overview of pull requests
[![](https://img.shields.io/github/v/release/bbonkr/get-overview-of-pull-requests-action?display_name=tag&style=flat-square&include_prereleases)](https://github.com/bbonkr/get-overview-of-pull-requests-action/releases)
GitHub action which is getting overview of pull requests.
## Usages
### Inputs
| Name | Required | Description |
| :------------- | :------: | :------------------------------------------------------------------------------------------- |
| base | ✅ | Base branch name of pull request |
| head | ✅ | Head branch name of pull request |
| github_token | | GitHub Personal Access Token. It requires REPO scope. default value is `${{ github.token }}` |
| default_branch | | Branch name which collects informations; default: default branch of repository |
| owner | | Name of repository owner, For test. You does not need this input. |
| repo | | Repository name; For test. You does not need this input. |
| logging | | Shows logging message (Please set `true` if you want to show logging messages) |### outputs
| Name | Description |
| :---------- | :---------------------------------------------- |
| title | Title of pull request |
| body | Body of pull request |
| labels | A comma-separated list of label names |
| milestone | Milestone |
| assignees | A comma-separated list of assignee logins |
| reviewers | A comma-separated list of reviewer logins |
| pull_number | Pull request number of base branch if it exists |### Limitations
We cannot add project which defined on ORG (or profile) level when create pull or update pull.
### Example
You can use this action as below.
```yaml
name: 'PR completed'on: # rebuild any PRs and main branch changes
pull_request:
types: ['closed']permissions:
contents: write
pull-requests: writeenv:
MAIN_BRANCH_NAME: main
PROJECT_NAME: ''jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# ... build workflowcreate-tag:
needs: [build] # build job is completed as success
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4# ... more steps
- name: 'get next version name'
uses: bbonkr/next-version-proposal-action@v1
id: next_version_proposal
with:
next_version_prefix: 'v'- name: 'Create tag'
uses: rickstaa/action-create-tag@v1
if: ${{ steps.next_version_proposal.outputs.next_version != '' }}
with:
tag: '${{ steps.next_version_proposal.outputs.next_version }}'
message: 'New release ${{ steps.next_version_proposal.outputs.next_version }}'
commit_sha: ${{ github.sha }}- name: create GitHub Release
id: release_drafter
uses: release-drafter/release-drafter@v6
if: ${{ steps.next_version_proposal.outputs.next_version != '' }}
with:
config-name: release-drafter.yml
version: ${{ steps.next_version_proposal.outputs.next_version }}
publish: false
prerelease: false
env:
GITHUB_TOKEN: ${{ github.token }}- name: git tag skipped
if: ${{ steps.next_version_proposal.outputs.next_version == '' }}
run: |
echo "Next version tag is empty."- name: Get overview of PR
uses: bbonkr/get-overview-of-pull-requests-action@v1
id: get_overview
with:
base: main
head: ${{ github.event.pull_request.base.ref }}
default_branch: dev- name: logging
run: |
echo "title: ${{ steps.get_overview.outputs.title }}"
echo "body: ${{ steps.get_overview.outputs.body }}"
echo "labels: ${{ steps.get_overview.outputs.labels }}"
echo "milestone: ${{ steps.get_overview.outputs.milestone }}"
echo "assignees: ${{ steps.get_overview.outputs.assignees }}"
echo "reviewers: ${{ steps.get_overview.outputs.reviewers }}"
echo "pull_number: ${{ steps.get_overview.outputs.pull_number }}"- name: Create pull
if: ${{ steps.get_overview.outputs.pull_number == '' }}
run: |
gh pr create --base ${{ env.MAIN_BRANCH_NAME }} \
--head ${{ github.event.pull_request.base.ref }} \
--label '${{ steps.get_overview.outputs.labels }}' \
--project '${{ env.PROJECT_NAME }}' \
--reviewer ${{ steps.get_overview.outputs.reviewers }} \
--assignee ${{ steps.get_overview.outputs.assignees }} \
--body '${{ steps.get_overview.outputs.body }}' \
--title '${{ env.MAIN_BRANCH_NAME }}'
env:
GITHUB_TOKEN: ${{ github.token }}- name: Update pull
if: ${{ steps.get_overview.outputs.pull_number != '' }}
run: |
gh pr edit ${{ env.MAIN_BRANCH_NAME }} \
--body '${{ steps.get_overview.outputs.body }}' \
--title '${{ env.MAIN_BRANCH_NAME }}' \
--add-label '${{ steps.get_overview.outputs.labels }}'
env:
GITHUB_TOKEN: ${{ github.token }}
```> Please see pull request which generated by this action.
>
> - [Example pull request](https://github.com/bbonkr/get-overview-of-pull-requests-action/pull/15)