Merge pull request #3178 from GEOS-ESM/feature/wjiang/tableEnd #609
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: Push to Develop | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
pull_request: | |
name: Create Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run the action | |
uses: devops-infra/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
source_branch: develop | |
target_branch: release/MAPL-v3 | |
label: ":chart_with_upwards_trend: MAPL3,Changelog Skip,:wrench: Github Actions" | |
template: .github/PULL_REQUEST_TEMPLATE/auto_pr_to_mapl3.md | |
# Turning this to false until the action can get a fix for | |
# https://github.com/devops-infra/action-pull-request/issues/126 | |
#get_diff: true | |
get_diff: false | |
assignee: ${{ github.actor }} | |
old_string: "<!-- Write your description here -->" | |
new_string: ${{ github.event.commits[0].message }} | |
title: Auto GitFlow - develop → MAPL-v3 - ${{ github.event.commits[0].message }} | |