1- # Commits missed changes to built files back to pull request branches.
1+ # Commits all missed changes to built files back to pull request branches.
22name : Commit Built File Changes (PRs)
33
44on :
@@ -24,19 +24,13 @@ jobs:
2424 # read-only access.
2525 #
2626 # Performs the following steps:
27+ # - Attempts to download the artifact containing the PR diff.
28+ # - Checks for the existence of an artifact.
29+ # - Unzips the artifact.
2730 # - Generates a token for authenticating with the GitHub App.
2831 # - Checks out the repository.
29- # - Sets up Node.js.
30- # - Configures caching for Composer.
31- # - Installs Composer dependencies.
32- # - Logs general debug information about the runner.
33- # - Installs npm dependencies.
34- # - Builds CSS file using SASS.
35- # - Builds Emoji files.
36- # - Builds bundled Root Certificate files.
37- # - Builds WordPress.
38- # - Checks for changes to versioned files.
39- # - Displays the result of git diff for debugging purposes.
32+ # - Applies the patch file.
33+ # - Displays the result of git diff.
4034 # - Configures the Git author.
4135 # - Stages changes.
4236 # - Commits changes.
@@ -131,9 +125,6 @@ jobs:
131125
132126 rm -f private-key.pem
133127
134- - name : list directory
135- run : ls -la
136-
137128 - name : Checkout repository
138129 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
139130 if : ${{ steps.artifact-check.outputs.exists == 'true' }}
@@ -142,10 +133,6 @@ jobs:
142133 ref : ${{ github.event.workflow_run.head_branch }}
143134 path : ' pr-repo'
144135 show-progress : ${{ runner.debug == '1' && 'true' || 'false' }}
145- token : ${{ env.ACCESS_TOKEN }}
146-
147- - name : list directory
148- run : ls -la
149136
150137 - name : Apply patch
151138 if : ${{ steps.artifact-check.outputs.exists == 'true' }}
0 commit comments