Ohmms matrix assignment operator should be able to do a widening assigment #1959
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
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 }} |