Callback PlotHistogram breaks if only one variable is specified. (#165) #14
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 private repository | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
push_changes: | |
if: ${{ !contains(github.repository, 'private') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Git configuration | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Setup SSH key | |
uses: webfactory/ssh-agent@v0.5.0 | |
with: | |
ssh-private-key: ${{ secrets.KEY_TO_PRIVATE }} | |
- name: Push changes to private repository | |
run: | | |
git remote add private git@github.com:${{ github.repository }}-private.git | |
git push --set-upstream private develop |