DO NOT MERGE Update extension-test.yml #94
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
# If you see this message on 'femiwiki/.github' repository, please keep in mind that all changes of | |
# this workflow file is for being copied to other repositories. If you see this message on any other | |
# repositories, DO NOT EDIT this file itself. You should edit | |
# https://github.com/femiwiki/.github/blob/main/workflow-templates/.github/workflows/create-pr-updating-extension-test.yml | |
# Instead of this. | |
name: Create PR updating extension test | |
on: | |
push: | |
branches: | |
- '*-update-extension-test' | |
jobs: | |
create-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
echo 'CREATE_PR_BASE='$(echo "${{ github.ref_name }}" | cut -d'-' -f1 ) >> $GITHUB_ENV | |
- name: Create Pull Request | |
uses: repo-sync/pull-request@v2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pr_title: Update extension test workflow on ${{ env.CREATE_PR_BASE }} branch | |
destination_branch: ${{ env.CREATE_PR_BASE }} |