v1.6.3.231119 #68
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
name: Raise Pull Request | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
update_fork: | |
name: Raise Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: push contrib branch | |
env: | |
CI_USER_EMAIL: ${{ secrets.CI_USER_EMAIL }} | |
CI_USER_NAME: ${{ secrets.CI_USER_NAME }} | |
CI_USER_USERNAME: ${{ secrets.CI_USER_USERNAME }} | |
CI_USER_ACCESS_TOKEN: ${{ secrets.CI_USER_ACCESS_TOKEN }} | |
run: | | |
git config --global user.email "${CI_USER_EMAIL}" | |
git config --global user.name "${CI_USER_NAME}" | |
./scripts/push-contrib-branch.sh | |
- name: raise pull request | |
env: | |
CI_USER_USERNAME: ${{ secrets.CI_USER_USERNAME }} | |
CI_USER_ACCESS_TOKEN: ${{ secrets.CI_USER_ACCESS_TOKEN }} | |
run: | | |
./scripts/raise-pull-request.sh |