Merge pull request #1493 from Instadapp/hf/batch-modal-close #1
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
name: Open PR develop -> master | |
on: | |
push: | |
branches: | |
- develop | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
create_pull_request: | |
name: Create Pull Request | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
repository-projects: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Create Pull Request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr create -B master -H develop -d --title "Staging" --body "## Changes to be merged from develop into master" || true | |
- name: Update Comment | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
#!/bin/bash | |
PR_NUMBER=$(gh pr list -B master -H develop -s open --json number -q ".[].number") | |
echo -e "### Changes to be merged from develop into master" > text | |
gh pr view --json commits -q '.commits[] | "- \(.oid) - \(.messageHeadline)"' | while read line; do | |
echo -e "$line" >> text | |
done; | |
gh pr edit $PR_NUMBER -F text |