Improvements to changesets versioning #5
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: Add changeset to renovate created PRs | |
on: | |
pull_request: | |
branches: [main] | |
# Increase the access for the GITHUB_TOKEN | |
permissions: | |
# This Allows the GITHUB_TOKEN to add to pull requests | |
contents: write | |
pull-requests: write | |
jobs: | |
add_changeset: | |
runs-on: ubuntu-latest | |
name: Add changeset | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Add renovate changeset | |
id: add_renovate_changeset | |
uses: OctopusDeploy/util-actions/[email protected] | |
with: | |
type: patch | |
summary: ${{ github.event.pull_request.title }} | |
ignore: | | |
**/node_modules/**/* | |
- name: Print changeset contents | |
run: cat ${{ steps.add_renovate_changeset.outputs.changesetPath }} | |
- name: Commit & Push changes | |
uses: actions-js/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |