feat: autogenerate changeset #77
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: Get PR description | |
on: | |
pull_request: | |
types: [opened, synchronize, edited] | |
jobs: | |
print_title_of_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Print Title of PR | |
run: echo The Title of your PR is ${{ github.event.pull_request.title }} | |
- name: Create changeset | |
id: create-changeset | |
uses: ./.github/actions/create-changeset | |
with: | |
projectName: "fusion-porject-portal" | |
- name: Commit Changeset | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: ${{steps.create-changeset.outputs.changeSetPath}} | |
branch: ${{ github.head_ref }} |