* dont use version for examples, stick to master * add note about it being important to use stable release in README.md Signed-off-by: vsoch <vsoch@users.noreply.github.com>
19 lines
434 B
YAML
19 lines
434 B
YAML
name: Pull Request on Branch Push
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- staging
|
|
- launchpad
|
|
- production
|
|
jobs:
|
|
auto-pull-request:
|
|
name: PullRequestAction
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: pull-request-action
|
|
uses: vsoch/pull-request-action@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
BRANCH_PREFIX: "update/"
|
|
PULL_REQUEST_BRANCH: "master"
|