-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rename testing.yml to sync-default.yml because that's what it does, it doesn't test * bump checkout version * bump ssh-add version * give prs read access so we can get the pull request number * add contents perms * drop php 8.0 testing default upstream php is 8.1 so we can not test older than that * fix typo * allow deletion of test sage directory if on ci * don't fail fast if one of the tests fails * wait for the operation to complete * allow steps in the build artifact step to fail * check for an existing named multidev before creating * silence the workflow wait * use latest stable node * drop php 7.4 tests bedrock no longer supports * rename workflow * use the right command * update circle image * better handling for multidev matching * use latest lts * use current node version * switch lint/test to pull request * bump node setup earleir * just wait 15 seconds * don't cache dependencies * add composer diff * update php requirement * run composer update instead of install make sure we're getting the latest stuff * only run check-commits on release pushes when deploy-public-upstream is run * move stuff around * move the filter back into the deploy-public-upstream job * filter check-commits on release, too * add specific triggers for pull_request * remove write permission for composer-diff Co-authored-by: Phil Tyler <[email protected]> --------- Co-authored-by: Phil Tyler <[email protected]>
- Loading branch information
1 parent
2b6c488
commit 988a03f
Showing
7 changed files
with
77 additions
and
17 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Composer Diff | ||
on: | ||
pull_request: | ||
paths: | ||
- 'composer.lock' | ||
permissions: | ||
pull-requests: write | ||
jobs: | ||
composer-diff: | ||
name: Composer Diff | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Generate composer diff | ||
id: composer_diff | ||
uses: IonBazan/composer-diff-action@v1 | ||
- uses: marocchino/sticky-pull-request-comment@v2 | ||
if: ${{ steps.composer_diff.outputs.composer_diff_exit_code != 0 }} | ||
with: | ||
header: composer-diff | ||
message: | | ||
<strong>Composer Changes</strong> | ||
${{ steps.composer_diff.outputs.composer_diff }} |
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