feat: import Canterbury - Christchurch and Ashley River LiDAR 1m DSM … #35
Workflow file for this run
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: Pull Request Action | |
on: | |
push: | |
branches: | |
- feat/bot-* | |
jobs: | |
create-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: pull-request | |
run: | | |
gh pr edit ${{ github.ref_name }} --title '${{ github.event.head_commit.message }}' --body '' && | |
gh pr reopen ${{ github.ref_name }} || | |
gh pr create --base master --title '${{ github.event.head_commit.message }}' --body '' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |