mirror of https://github.com/QMCPACK/qmcpack.git
53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
on:
|
|
pull_request_target:
|
|
types: [edited, auto_merge_enabled]
|
|
branches:
|
|
- github_actions_automatic_rebase
|
|
- develop
|
|
- main
|
|
push:
|
|
branches:
|
|
- develop
|
|
- main
|
|
|
|
jobs:
|
|
rebase:
|
|
if: |
|
|
contains(github.event.pull_request.body, '!-> Feel free to automatically rebase this PR. <-!')
|
|
&& github.event.pull_request.auto_merge
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Echo Github Context To Debug
|
|
run: echo "$GITHUB_CONTEXT"
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJSON(github) }}
|
|
- name: Checkout Action
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|
|
- name: Automatic Rebase
|
|
run: tests/test_automation/github-actions/ci/run_step.sh rebase
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
QMCPACK_BOT_GPG_KEY: ${{ secrets.QMCPACK_BOT_GPG_KEY }}
|
|
QMCPACK_BOT_GPG_SIGNING_KEY: ${{ secrets.QMCPACK_BOT_GPG_SIGNING_KEY }}
|
|
|
|
trigger-rebase:
|
|
if: github.event_name == 'push'
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Action
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|
|
- name: Push Update To Opt'd in PR's
|
|
run: tests/test_automation/github-actions/ci/run_step.sh pull-rebase
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
QMCPACK_BOT_GPG_KEY: ${{ secrets.QMCPACK_BOT_GPG_KEY }}
|
|
QMCPACK_BOT_GPG_SIGNING_KEY: ${{ secrets.QMCPACK_BOT_GPG_SIGNING_KEY }}
|