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: Create AdaptFramework Pull Request | |
on: | |
release: | |
types: [published] | |
jobs: | |
framework-pull-request: | |
name: Create FW PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch tag | |
uses: actions/checkout@v3 | |
- name: Set Core version | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Checkout FW | |
uses: actions/checkout@v3 | |
with: | |
path: "fw" | |
ref: "master" | |
repository: "adaptlearning/adapt_framework" | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
fetch-depth: 0 | |
persist-credentials: true | |
- name: Make changes to .gitmodules | |
shell: bash | |
working-directory: "fw" | |
run: | | |
echo '[submodule "src/core"] | |
path = src/core | |
branch = master | |
url = https://github.com/adaptlearning/adapt-contrib-core | |
installBranch = ${{ env.RELEASE_VERSION }}' > .gitmodules | |
- name: Create PR | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
path: "fw" | |
branch: core-bump-${{ env.RELEASE_VERSION }} | |
title: "Fix: Bumping core to ${{ env.RELEASE_VERSION }} automatically via 'frameworkpullrequest' Github action" | |
commit-message: "Fix: Bumping core to ${{ env.RELEASE_VERSION }} automatically via 'frameworkpullrequest' Github action" | |
token: "${{ secrets.COREBUMPPPR_TOKEN }}" |