Skip to content

New dcs16_push.yml workflow. #1

New dcs16_push.yml workflow.

New dcs16_push.yml workflow. #1

Workflow file for this run

# Script to make a PR if the push is from DCS.
name: dcs16_push
on:
push:
branches-ignore: main
#
env:
EXTERNAL_DEPS_VERSION: main
#
jobs:
create-pull-request:
if: ${{ github.triggering_actor == 'DavidSagan' }}
runs-on: Ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: gh pr create -B main -H ${{ github.ref_name }} --title "${{ github.ref_name }}" --body "${{ github.event.head_commit.message }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}