File tree Expand file tree Collapse file tree 1 file changed +2
-13
lines changed
Expand file tree Collapse file tree 1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -76,27 +76,16 @@ jobs:
7676 git status
7777 git diff
7878
79- - name : Check for changes
80- id : check-changes
81- run : |
82- if git diff --quiet; then
83- echo "No changes detected for ${{ matrix.extension }}"
84- echo "changed=false" >> $GITHUB_OUTPUT
85- else
86- echo "Changes detected for ${{ matrix.extension }}"
87- echo "changed=true" >> $GITHUB_OUTPUT
88- fi
89-
9079 - name : Create a PR if versions have been updated on main
9180 uses : peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8
92- if : github.ref == 'refs/heads/main' && steps.check-changes.outputs.changed == 'true'
81+ if : github.ref == 'refs/heads/main'
9382 with :
9483 token : ${{ secrets.REPO_GHA_PAT }}
9584 title : " chore: update ${{ matrix.extension }} OS libraries"
9685 body : " Updating the OS libraries of ${{ matrix.extension }}"
9786 branch : " ${{ matrix.extension }}-os-libraries"
9887 author : " extension-os-libs-updater <extension-os-libs-updater@users.noreply.github.com>"
9988 add-paths : |
100- ${{ matrix.extension }}/**
89+ ${{ matrix.extension }}/system-libs/ **
10190 commit-message : " chore: update ${{ matrix.extension }} OS libraries"
10291 signoff : true
You can’t perform that action at this time.
0 commit comments