-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update workflows from templates
Signed-off-by: skjnldsv <[email protected]>
- Loading branch information
Showing
17 changed files
with
93 additions
and
75 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reactions: "+1" | ||
reactions: '+1' | ||
|
||
- name: Parse command | ||
uses: skjnldsv/parse-command-comment@5c955203c52424151e6d0e58fb9de8a9f6a605a1 # v2 | ||
|
@@ -69,16 +69,16 @@ jobs: | |
key: git-repo | ||
|
||
- name: Checkout ${{ needs.init.outputs.head_ref }} | ||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
fetch-depth: 0 | ||
ref: ${{ needs.init.outputs.head_ref }} | ||
|
||
- name: Setup git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "nextcloud-command" | ||
git config --local user.email '[email protected]' | ||
git config --local user.name 'nextcloud-command' | ||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3 | ||
|
@@ -94,13 +94,13 @@ jobs: | |
cache: npm | ||
|
||
- name: Set up npm ${{ steps.package-engines-versions.outputs.npmVersion }} | ||
run: npm i -g npm@"${{ steps.package-engines-versions.outputs.npmVersion }}" | ||
run: npm i -g 'npm@${{ steps.package-engines-versions.outputs.npmVersion }}' | ||
|
||
- name: Rebase to ${{ needs.init.outputs.base_ref }} | ||
if: ${{ contains(needs.init.outputs.arg1, 'rebase') }} | ||
run: | | ||
git fetch origin ${{ needs.init.outputs.base_ref }}:${{ needs.init.outputs.base_ref }} | ||
git rebase origin/${{ needs.init.outputs.base_ref }} | ||
git fetch origin '${{ needs.init.outputs.base_ref }}:${{ needs.init.outputs.base_ref }}' | ||
git rebase 'origin/${{ needs.init.outputs.base_ref }}' | ||
- name: Install dependencies & build | ||
env: | ||
|
@@ -113,30 +113,30 @@ jobs: | |
- name: Commit default | ||
if: ${{ !contains(needs.init.outputs.arg1, 'fixup') && !contains(needs.init.outputs.arg1, 'amend') }} | ||
run: | | ||
git add ${{ github.workspace }}${{ needs.init.outputs.git_path }} | ||
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}' | ||
git commit --signoff -m 'chore(assets): Recompile assets' | ||
- name: Commit fixup | ||
if: ${{ contains(needs.init.outputs.arg1, 'fixup') }} | ||
run: | | ||
git add ${{ github.workspace }}${{ needs.init.outputs.git_path }} | ||
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}' | ||
git commit --fixup=HEAD --signoff | ||
- name: Commit amend | ||
if: ${{ contains(needs.init.outputs.arg1, 'amend') }} | ||
run: | | ||
git add ${{ github.workspace }}${{ needs.init.outputs.git_path }} | ||
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}' | ||
git commit --amend --no-edit --signoff | ||
# Remove any [skip ci] from the amended commit | ||
git commit --amend -m "$(git log -1 --format='%B' | sed '/\[skip ci\]/d')" | ||
- name: Push normally | ||
if: ${{ !contains(needs.init.outputs.arg1, 'rebase') && !contains(needs.init.outputs.arg1, 'amend') }} | ||
run: git push origin ${{ needs.init.outputs.head_ref }} | ||
run: git push origin '${{ needs.init.outputs.head_ref }}' | ||
|
||
- name: Force push | ||
if: ${{ contains(needs.init.outputs.arg1, 'rebase') || contains(needs.init.outputs.arg1, 'amend') }} | ||
run: git push --force origin ${{ needs.init.outputs.head_ref }} | ||
run: git push --force origin '${{ needs.init.outputs.head_ref }}' | ||
|
||
- name: Add reaction on failure | ||
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | ||
|
@@ -145,4 +145,4 @@ jobs: | |
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reactions: "-1" | ||
reactions: '-1' |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.